API15

API15:JMenu/ construct

From Joomla! Documentation

Description

Class constructor

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

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

function __construct($options = array())
{
        $this->load(); //load the menu items

        foreach ($this->_items as $k => $item)
        {
                if ($item->home) {
                        $this->_default = $item->id;
                }
        }
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples