( ◞≼☸≽◟ ._ゝ◞≼☸≽◟)zcsdf吖 'wrapper'); } } /** * Wrapper router functions * * These functions are proxys for the new router interface * for old SEF extensions. * * @param array &$query An array of URL arguments * * @return array The URL arguments to use to assemble the subsequent URL. * * @deprecated 4.0 Use Class based routers instead */ function wrapperBuildRoute(&$query) { $router = new WrapperRouter; return $router->build($query); } /** * Wrapper router functions * * These functions are proxys for the new router interface * for old SEF extensions. * * @param array $segments The segments of the URL to parse. * * @return array The URL attributes to be used by the application. * * @deprecated 4.0 Use Class based routers instead */ function wrapperParseRoute($segments) { $router = new WrapperRouter; return $router->parse($segments); }