Changeset 1911 for trunk/system/libraries/Router.php
- Timestamp:
- 02/04/2008 10:13:16 AM (11 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Router.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Router.php
r1850 r1911 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * Class:Router3 * Router 4 4 * 5 * Kohana Source Code: 6 * author - Kohana Team 7 * copyright - (c) 2007 Kohana Team 8 * license - <http://kohanaphp.com/license.html> 5 * $Id$ 6 * 7 * @package Core 8 * @author Kohana Team 9 * @copyright (c) 2007-2008 Kohana Team 10 * @license http://kohanaphp.com/license.html 9 11 */ 10 12 class Router_Core { … … 25 27 26 28 /** 27 * Method: setup 28 * Router setup routine. Automatically called during Kohana setup process. 29 * Router setup routine. Automatically called during Kohana setup process. 29 30 */ 30 31 public static function setup() … … 178 179 179 180 /** 180 * Method: find_uri 181 * Attempts to determine the current URI using CLI, GET, PATH_INFO, ORIG_PATH_INFO, or PHP_SELF. 181 * Attempts to determine the current URI using CLI, GET, PATH_INFO, ORIG_PATH_INFO, or PHP_SELF. 182 182 */ 183 183 public static function find_uri() … … 256 256 257 257 /** 258 * Method: filter_uri 259 * Filter a string for allowed URI characters. 258 * Filter a string for allowed URI characters. 260 259 * 261 * Parameters: 262 * str - string to filter 263 * 264 * Returns: 265 * Filtered string 260 * @param string string to filter 261 * @return string 266 262 */ 267 263 public static function filter_uri($str)
