Welcome Guest, Not a member yet? Register   Sign In
CodeIgniter 1.6.0 "beta"
#69

[eluser]James Gifford[/eluser]
I just tried using the CI 1.6.0 from the svn and I have noticed an unexpected change from 1.5.4.

Before, when I wanted to get the value for the default controller in the routes.php config file I would use the following code:
Code:
$this->uri->router->default_controller

In 1.6.0, this line doesn't work. Upon further checking I discovered there is no "default_controller" property in the CI instance anymore. The uri object is still accessible, but there is no router object to access the routing settings.

Is there a different way to get the default controller in 1.6.0? I notice in the change log there is mention of reorganizing the uri and router classes. How can I access this value?

EDIT: I've compared the old uri class to the new one and I've figured out that the new uri class does not load the router class anymore.

Old uri class constructor:
Code:
function CI_URI()
{
   $this->router =& load_class('Router');    
   log_message('debug', "URI Class Initialized");
}
New uri class constructor
Code:
function CI_URI()
{
   $this->config =& load_class('Config');
   log_message('debug', "URI Class Initialized");
}

The new uri class no longer uses the router class which is why I can't access the default_controller property anymore. It looks like the only place where the router class is used is the Codeigniter.php file.

I don't know if this was intentional or if its a bug, but I need to be able to access the default_controller property. Is there any way to do this now without loading the router class separately?


Messages In This Thread
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 01:46 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 01:48 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 02:07 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 02:14 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 02:16 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 02:23 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 02:38 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 03:18 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 03:20 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 03:21 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 03:24 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 04:02 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 06:09 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 06:22 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 07:02 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 07:08 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 07:24 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-16-2008, 07:36 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-17-2008, 01:03 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-17-2008, 01:20 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-17-2008, 01:55 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-17-2008, 02:12 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-17-2008, 04:16 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-17-2008, 06:17 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-17-2008, 12:12 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-17-2008, 12:50 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-17-2008, 12:58 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-17-2008, 01:02 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-17-2008, 01:04 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-17-2008, 03:45 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-18-2008, 02:47 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-18-2008, 04:11 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-19-2008, 10:28 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-20-2008, 01:53 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-20-2008, 02:00 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-20-2008, 11:58 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-21-2008, 01:58 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-21-2008, 02:01 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-22-2008, 06:08 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-22-2008, 06:36 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-22-2008, 06:52 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-22-2008, 08:28 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-23-2008, 03:44 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-23-2008, 05:06 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-23-2008, 05:39 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-23-2008, 06:10 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-23-2008, 08:03 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-23-2008, 09:57 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-23-2008, 12:05 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-23-2008, 04:24 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-24-2008, 01:28 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-24-2008, 03:37 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-24-2008, 04:08 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-24-2008, 04:30 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-24-2008, 04:36 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-24-2008, 04:41 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-24-2008, 10:48 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-24-2008, 10:52 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-26-2008, 07:25 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-26-2008, 08:15 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-26-2008, 08:18 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-26-2008, 09:35 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-26-2008, 11:53 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-26-2008, 03:15 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-26-2008, 03:18 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-26-2008, 03:44 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-26-2008, 04:10 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-26-2008, 04:14 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-26-2008, 10:33 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-27-2008, 06:47 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-27-2008, 01:16 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-27-2008, 07:06 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-27-2008, 08:51 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-28-2008, 02:59 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-28-2008, 11:46 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-28-2008, 12:03 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-28-2008, 02:26 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-29-2008, 05:24 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-29-2008, 08:05 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-29-2008, 08:36 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-29-2008, 08:50 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 01-29-2008, 08:53 AM
CodeIgniter 1.6.0 "beta" - by El Forum - 03-26-2008, 04:45 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 03-26-2008, 06:08 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 03-26-2008, 06:46 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 03-27-2008, 02:57 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 03-27-2008, 03:06 PM
CodeIgniter 1.6.0 "beta" - by El Forum - 03-27-2008, 03:08 PM



Theme © iAndrew 2016 - Forum software by © MyBB