When using the Modules::run() for dynamically loading views such as:
$this->load->module('module_name');
$this->module_name->index();
or
echo modules::run($module->module);
The problem is that you are using the:
$this->_module = $this->_ci->router->fetch_module();
The problem is this is NULL when using the run() or load->module() methods.
Is there a fix for this.
When using the Modules::run() for dynamically loading views such as:
$this->load->module('module_name'); $this->module_name->index();or
The problem is that you are using the:
The problem is this is NULL when using the run() or load->module() methods.
Is there a fix for this.