API15:JApplication/getPathway
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Return a reference to the application JPathway object.
Description:JApplication/getPathway
Syntax
& getPathway($name=null, $options=array())
| Parameter Name | Default Value | Description |
|---|---|---|
| $name | null | $options An optional associative array of configuration settings. |
| $options | array() |
Returns
object .
Defined in
libraries/joomla/application/application.php
Importing
jimport( 'joomla.application.application' );
Source Body
function &getPathway($name = null, $options = array()) { if(!isset($name)) { $name = $this->_name; } jimport( 'joomla.application.pathway' ); $pathway =& JPathway::getInstance($name, $options); if (JError::isError($pathway)) { $null = null; return $null; } return $pathway; }
[Edit See Also] SeeAlso:JApplication/getPathway
Examples
<CodeExamplesForm />
