API16:JMenu/ construct
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
Class constructor
Syntax
__construct($options=array())
| Parameter Name | Default Value | Description |
|---|---|---|
| $options | array() |
Returns
boolean True on success
Defined in
libraries/joomla/application/menu.php
Importing
jimport( 'joomla.application.menu' );
Source Body
public function __construct($options = array()) { $this->load(); //load the menu items foreach ($this->_items as $k => $item) { if ($item->home) { $this->_default = $item->id; } } }
[Edit See Also] SeeAlso:JMenu/ construct
Examples
<CodeExamplesForm />
