API16:JPathway/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 the JPathWay items array
Description:JPathway/getPathway
Syntax
getPathway()
Returns
array Array of pathway items
Defined in
libraries/joomla/application/pathway.php
Importing
jimport( 'joomla.application.pathway' );
Source Body
function getPathway() { $pw = $this->_pathway; // Use array_values to reset the array keys numerically return array_values($pw); }
[Edit See Also] SeeAlso:JPathway/getPathway
Examples
<CodeExamplesForm />
