Exemple #1
0
/**
 * Convert SEF URL segments into query variables
 *
 * @param   array  $segments  Segments in the current URL
 *
 * @return  array  Query variables
 *
 * @deprecated  4.0  Use Class based routers instead
 */
function usersParseRoute($segments)
{
    $router = new UsersRouter();
    return $router->parse($segments);
}
Exemple #2
0
/**
 * Convert SEF URL segments into query variables
 *
 * @param   array  $segments  Segments in the current URL
 *
 * @return  array  Query variables
 *
 * @deprecated  4.0  Use Class based routers instead
 */
function usersParseRoute($segments)
{
    $app = JFactory::getApplication();
    $router = new UsersRouter($app, $app->getMenu());
    return $router->parse($segments);
}