JPathway/getPathway
From Joomla! Documentation
< API16:JPathway
The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Contents
Description
Return the JPathWay items array
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);
}