Skip to content

Commit

Permalink
Renaming parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Dec 4, 2009
1 parent aff7d61 commit 218af68
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions cake/libs/router.php
Expand Up @@ -251,31 +251,31 @@ function getNamedExpressions() {
* Patterns for routing parameters do not need capturing groups, as one will be added for each route params.
*
* @param string $route A string describing the template of the route
* @param array $default An array describing the default route parameters. These parameters will be used by default
* @param array $defaults An array describing the default route parameters. These parameters will be used by default
* and can supply routing parameters that are not dynamic. See above.
* @param array $params An array matching the named elements in the route to regular expressions which that
* @param array $options An array matching the named elements in the route to regular expressions which that
* element should match. Also contains additional parameters such as which routed parameters should be
* shifted into the passed arguments. As well as supplying patterns for routing parameters.
* @see routes
* @return array Array of routes
* @access public
* @static
*/
function connect($route, $default = array(), $params = array()) {
function connect($route, $defaults = array(), $options = array()) {
$self =& Router::getInstance();

foreach ($self->__prefixes as $prefix) {
if (isset($default[$prefix])) {
$default['prefix'] = $prefix;
if (isset($defaults[$prefix])) {
$defaults['prefix'] = $prefix;
break;
}
}
if (isset($default['prefix'])) {
$self->__prefixes[] = $default['prefix'];
if (isset($defaults['prefix'])) {
$self->__prefixes[] = $defaults['prefix'];
$self->__prefixes = array_keys(array_flip($self->__prefixes));
}
$default += array('action' => 'index', 'plugin' => null, 'controller' => null);
$self->routes[] =& new RouterRoute($route, $default, $params);
$defaults += array('action' => 'index', 'plugin' => null, 'controller' => null);
$self->routes[] =& new RouterRoute($route, $defaults, $options);
return $self->routes;
}

Expand Down

0 comments on commit 218af68

Please sign in to comment.