API15:JMenu/getItems
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
Gets menu items by attribute
Syntax
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
array
Defined in
libraries/joomla/application/menu.php
Importing
jimport( 'joomla.application.menu' );
Source Body
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] SeeAlso:JMenu/getItems
Examples
<CodeExamplesForm />
