API15:JApplication/getRouter
From Joomla! Documentation
Description
Return a reference to the application JRouter object.
<! removed transcluded page call, red link never existed >
Syntax
& getRouter($name=null, $options=array())
Parameter Name | Default Value | Description |
---|---|---|
$name | null | $options An optional associative array of configuration settings. |
$options | array() |
Returns
.
Defined in
libraries/joomla/application/application.php
Importing
jimport( 'joomla.application.application' );
Source Body
function &getRouter($name = null, $options = array())
{
if(!isset($name)) {
$name = $this->_name;
}
jimport( 'joomla.application.router' );
$router =& JRouter::getInstance($name, $options);
if (JError::isError($router)) {
$null = null;
return $null;
}
return $router;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples