API15

API15:JMenu/ construct

From Joomla! Documentation

Revision as of 00:57, 25 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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