API15

JMenu/getItems

From Joomla! Documentation

< API15:JMenu
Revision as of 17:10, 22 March 2010 by Doxiki (talk | contribs)

The "API15" 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]

Gets menu items by attribute

[Edit Descripton]

Template:Description:JMenu/getItems

Syntax[edit]

getItems($attribute, $value, $firstonly=false)
Parameter Name Default Value Description
$attribute The field name
$value The value of the field
$firstonly false If true, only returns the first item found

Returns[edit]

array

Defined in[edit]

libraries/joomla/application/menu.php

Importing[edit]

jimport( 'joomla.application.menu' );

Source Body[edit]

function getItems($attribute, $value, $firstonly = false)
{
        $items = null;

        foreach ($this->_items as  $item)
        {
                if ( ! is_object($item) )
                        continue;

                if ($item->$attribute == $value)
                {
                        if($firstonly) {
                                return $item;
                        }

                        $items[] = $item;
                }
        }

        return $items;
}

[Edit See Also] Template:SeeAlso:JMenu/getItems

Examples[edit]

<CodeExamplesForm />