API15:JPathway/getInstance
From Joomla! Documentation
Description
Returns a reference a JPathway object
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
& getInstance($client, $options=array())
| Parameter Name | Default Value | Description |
|---|---|---|
| $client | $client The name of the client | |
| $options | array() | $options An associative array of options |
Returns
A pathway object.
Defined in
libraries/joomla/application/pathway.php
Importing
jimport( 'joomla.application.pathway' );
Source Body
function &getInstance($client, $options = array())
{
static $instances;
if (!isset( $instances )) {
$instances = array();
}
if (empty($instances[$client]))
{
//Load the router object
$info =& JApplicationHelper::getClientInfo($client, true);
$path = $info->path.DS.'includes'.DS.'pathway.php';
if(file_exists($path))
{
require_once $path;
// Create a JPathway object
$classname = 'JPathway'.ucfirst($client);
$instance = new $classname($options);
}
else
{
$error = JError::raiseError( 500, 'Unable to load pathway: '.$client);
return $error;
}
$instances[$client] = & $instance;
}
return $instances[$client];
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples