diff options
author | David Behler <mail@davidbehler.de> | 2011-08-15 00:25:06 +0200 |
---|---|---|
committer | David Behler <mail@davidbehler.de> | 2011-08-15 00:25:06 +0200 |
commit | 07b53422f8d61e6b0b7e6479b0de92ad1a1ce05e (patch) | |
tree | 1835aaefbc8d49b0a1c6c9fa823bcef0f303de4c /system/core/Router.php | |
parent | cda768a957172d5da7aa7637337405c39e0f774d (diff) |
Added some docs to CI core files
Diffstat (limited to 'system/core/Router.php')
-rwxr-xr-x[-rw-r--r--] | system/core/Router.php | 46 |
1 files changed, 44 insertions, 2 deletions
diff --git a/system/core/Router.php b/system/core/Router.php index 668ac0954..6da667472 100644..100755 --- a/system/core/Router.php +++ b/system/core/Router.php @@ -28,12 +28,54 @@ */ class CI_Router { + /** + * Config class + * + * @var object + * @access public + */ var $config; + /** + * List of routes + * + * @var array + * @access public + */ var $routes = array(); + /** + * List of error routes + * + * @var array + * @access public + */ var $error_routes = array(); + /** + * Current class name + * + * @var string + * @access public + */ var $class = ''; + /** + * Current method name + * + * @var string + * @access public + */ var $method = 'index'; + /** + * Sub-directory that contains the requested controller class + * + * @var string + * @access public + */ var $directory = ''; + /** + * Default controller (and method if specific) + * + * @var string + * @access public + */ var $default_controller; /** @@ -95,7 +137,7 @@ class CI_Router { { include(APPPATH.'config/routes.php'); } - + $this->routes = ( ! isset($route) OR ! is_array($route)) ? array() : $route; unset($route); @@ -251,7 +293,7 @@ class CI_Router { $this->set_directory(''); $this->set_class($x[0]); $this->set_method(isset($x[1]) ? $x[1] : 'index'); - + return $x; } else |