Back to AdministratorRouter class

Method parse

public array
parse
(mixed &$uri, mixed $setVars = false)
Function to convert a route to an internal URI.
Parameters
  • \Joomla\CMS\Uri\Uri & $uri The uri.
  • bool $setVars Set the parsed data in the internal storage for current-request-URLs
Returns
  • array
Since
  • 1.5

Method parse - Source code

/**
 * Function to convert a route to an internal URI.
 *
 * @param   Uri   &$uri     The uri.
 * @param   bool  $setVars  Set the parsed data in the internal
 *                          storage for current-request-URLs
 *
 * @return  array
 *
 * @since   1.5
 */
public function parse(&$uri, $setVars = false)
{
    return array();
}