API16

JPathway/addItem

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.

Description[edit]

Create and add an item to the pathway.



Syntax[edit]

addItem($name, $link='')
Parameter Name Default Value Description
$name $name
$link $link

Returns[edit]

boolean True on success

Defined in[edit]

libraries/joomla/application/pathway.php

Importing[edit]

jimport( 'joomla.application.pathway' );

Source Body[edit]

function addItem($name, $link='')
{
        // Initalize variables
        $ret = false;

        if ($this->_pathway[] = $this->_makeItem($name, $link)) {
                $ret = true;
                $this->_count++;
        }

        return $ret;
}



Examples[edit]

Code Examples[edit]