Source for file administrator.php
Documentation is available at administrator.php
* @package Joomla.Libraries
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* Class to create and parse routes
* @package Joomla.Libraries
* Function to convert a route to an internal URI.
* @param JUri &$uri The uri.
public function parse(&$uri)
* Function to convert an internal URI to a route
* @param string $url The internal URL
* @return string The absolute search engine friendly URL
public function build($url)
$uri =
parent::build($url);
$route =
$uri->getPath();
// Add basepath to the uri
$uri->setPath(JUri::base(true) .
'/' .
$route);
Documentation generated on Tue, 19 Nov 2013 14:53:36 +0100 by phpDocumentor 1.4.3