API16

API16:JPathway/addItem

From Joomla! Documentation

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;
}



Examples

Code Examples