JPathway
From Joomla! Documentation
JPathway is an abstract class to maintain a pathway. Main example of use so far is the mod_breadcrumbs module that keeps track of the user's navigated path within the Joomla application.
Contents |
Availability
Defined in
/joomla/application/pathway.php
Extends
Methods
| Method name | Description |
|---|---|
| __construct | Constructor |
| addItem | Create and add an item to the pathway |
| getInstance | Returns a reference to a JPathway object |
| getPathway | Return the JPathway items array |
| getPathwayNames | Returns an array of the pathway names. |
| setPathway | Set the JPathway items array. |
Importing
jimport( 'joomla.application.pathway' );
