After the last two comments, I will rip out my real code and maybe this will help:
Here is the landing controller:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Businessbuilder extends CI_Controller { function __construct() { parent::__construct(); } function index() { $RTR = $GLOBALS["RTR"]; // import the necessary libraries $this->load->model("site_pages"); $RTR = $GLOBALS["RTR"]; // get the current site $site = current_site(); // get the requesting url $class = $RTR->uri->rsegments[1]; $function = $RTR->uri->rsegments[2]; // get the current function and class $current_method = explode("::", __METHOD__); // get the real class name that is going to be called $site_page = $this->site_pages->get(array("display_name"=>$class, "id"=>$site->id)); $site_page = $site_page->result(); if(count($site_page) == 1) { $site_page = $site_page[0]; // set the class name to be called $class = $site_page->class_name; } // only execute if the requested url is not the current url if(!(strtolower($class) == strtolower($current_method[0]) && strtolower($function) == strtolower($current_method[1]))) { if(!file_exists(APPPATH.'controllers/'.$RTR->fetch_directory().$class.EXT)) { show_404($RTR->fetch_directory().$class); exit; } // include the required file. I use require once incase it is a file that I've already included require_once(APPPATH.'controllers/'.$RTR->fetch_directory().$class.EXT); // create an instance of the class $CI = new $class(); if(method_exists($CI, $function)) // call the method call_user_func_array(array(&$CI, $function), array_slice($RTR->uri->rsegments, 2)); else { show_404($RTR->fetch_directory().$class); exit; } } } }
here is an example of a dynamic controller that will be called:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Public_homepage extends CI_Controller { function __construct() { parent::__construct(); } function index() { echo "<br /><br /><br />"; $this->load->model("sites"); $style = $this->sites->get(array("id"=>1));
Here is my model that I am using:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Sites extends CI_Model { function __construct() { parent::__construct(); } function get($search = array()) { return $this->db->query("SELECT * FROM sites");
The error I get is either this (error1):
A PHP Error was encountered Severity: Notice Message: Undefined property: Public_homepage::$sites Filename: controllers/public_homepage.php Line Number: 15 Fatal error: Call to a member function get() on a non-object in /var/www/businessbuilderapp.com/public_html/application/controllers/public_homepage.php on line 15
or this (error2):
A PHP Error was encountered Severity: Notice Message: Undefined property: Businessbuilder::$db Filename: core/Model.php Line Number: 50 Fatal error: Call to a member function query() on a non-object in /var/www/businessbuilderapp.com/public_html/application/models/bba_model.php on line 25
My theory as to why I get these errors is that the instance of the object is different from the one that loaded the model and libraries. Something strange is that it is that arrays are portable, but not objects. Thus, in the core Loader.php of the codeigniter $ _ci_models array is populated with models that are not loaded into the Public_homepage class
In addition, what can help you is that from the first pass through the business builder class, I can successfully load and use modules, but when Public_homepage is called, that when something starts to fail.
What makes this confusing is that I'm trying to figure out 2 errors with one question, which is probably my mistake. Here is a description of when I get errors:
Error1:
When I run the code as is, I cannot name the sites property.
Error2:
When I change call_user_func_array (array (& $ CI, $ function), array_slice ($ RTR-> uri-> rsegments, 2)); in eval ($ class. "->". $ function);
I understand that this is really confusing, especially when I explain it, but if you need more information, please let me know. Also note that Public_homepage looks like this because I'm testing. There is no need to unload more unnecessary lines if the error can be produced with minimal code.
Update
After reading some answers, I realized that I did not explain the code. What this code does is that it allows you to store different URLs inside the database, but all the URLs stored there can call the same page, even if they are different. I think the exact example would be changing a bullet to wordpress.
What happens is that the business builder class is configured to accept ALL server requests. When he gets into the business builder class, he will access the database, find out which sub-url you are using, find the real controller that the user is looking for, and gain access to this controller.