API15:JPathway/addItem
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
Create and add an item to the pathway.
Syntax
addItem($name, $link='')
| Parameter Name | Default Value | Description |
|---|---|---|
| $name | $name | |
| $link | $link |
Returns
boolean True on success
Defined in
libraries/joomla/application/pathway.php
Importing
jimport( 'joomla.application.pathway' );
Source Body
function addItem($name, $link='') { // Initalize variables $ret = false; if ($this->_pathway[] = $this->_makeItem($name, $link)) { $ret = true; $this->_count++; } return $ret; }
[Edit See Also] SeeAlso:JPathway/addItem
Examples
<CodeExamplesForm />
