Node

A Node for MenuTree

deprecated
see Tree
since

3.8.0

deprecated

4.0 Use Joomla\CMS\Menu\MenuItem

package

Joomla CMS

Methods

__construct

Constructor

__construct() : mixed
deprecated
since

3.8.0

deprecated

4.0 Use Joomla\CMS\Menu\MenuItem

Response

mixed

addChild

Add child to this node

addChild(\Joomla\CMS\Menu\Node child) : \Joomla\CMS\Menu\Node
deprecated

If the child already has a parent, the link is unset

since

3.8.0

deprecated

4.0 Use Joomla\CMS\Menu\MenuItem

Arguments

child

\Joomla\CMS\Menu\NodeThe child to be added

Response

\Joomla\CMS\Menu\NodeThe new added child

get

Get an attribute value

get(string name) : mixed
deprecated
since

3.8.0

deprecated

4.0 Use Joomla\CMS\Menu\MenuItem

Arguments

name

stringThe attribute name

Response

mixed

getChildren

Get the children of this node

getChildren() : \Joomla\CMS\Menu\Node[]
deprecated
since

3.8.0

deprecated

4.0 Use Joomla\CMS\Menu\MenuItem

Response

\Joomla\CMS\Menu\Node[]The children

getLevel

Find the current node depth in the tree hierarchy

getLevel() : int
deprecated
since

3.8.0

deprecated

4.0 Use Joomla\CMS\Menu\MenuItem

Response

intThe node level in the hierarchy, where ROOT == 0, First level menu item == 1, and so on.

getParam

Get the param value from the node params

getParam(string key) : mixed
deprecated
since

3.8.0

deprecated

4.0 Use Joomla\CMS\Menu\MenuItem

Arguments

key

stringThe param name

Response

mixed

getParent

Get the parent of this node

getParent() : \Joomla\CMS\Menu\Node
deprecated
since

3.8.0

deprecated

4.0 Use Joomla\CMS\Menu\MenuItem

Response

\Joomla\CMS\Menu\NodeThe Node object's parent or null for no parent

hasChildren

Test if this node has children

hasChildren() : bool
deprecated
since

3.8.0

deprecated

4.0 Use Joomla\CMS\Menu\MenuItem

Response

bool

hasParent

Test if this node has a parent

hasParent() : bool
deprecated
since

3.8.0

deprecated

4.0 Use Joomla\CMS\Menu\MenuItem

Response

boolTrue if there is a parent

isRoot

Check whether the object instance node is the root node

isRoot() : bool
deprecated
since

3.8.0

deprecated

4.0 Use Joomla\CMS\Menu\MenuItem

Response

bool

removeChild

Remove a child from this node

removeChild(\Joomla\CMS\Menu\Node child) : void
deprecated

If the child exists it is unset

since

3.8.0

deprecated

4.0 Use Joomla\CMS\Menu\MenuItem

Arguments

child

\Joomla\CMS\Menu\NodeThe child to be added

setActive

Set the active state on or off

setActive(bool active) : void
deprecated
since

3.8.0

deprecated

4.0 Use Joomla\CMS\Menu\MenuItem

Arguments

active

boolThe new active state

setParams

set the params array

setParams(\Joomla\Registry\Registry params) : void
deprecated
since

3.8.0

deprecated

4.0 Use Joomla\CMS\Menu\MenuItem

Arguments

params

\Joomla\Registry\RegistryThe params attributes

Properties

id

Node Id

since

3.8.0

Type(s)

string

class

CSS Class for node

since

3.8.0

Type(s)

string

active

Whether this node is active

since

3.8.0

Type(s)

bool

params

Additional custom node params

since

3.8.0

Type(s)

\Joomla\Registry\Registry

parent

Parent node object

since

3.8.0

Type(s)

\Joomla\CMS\Menu\Node

children

Array of Children node objects

since

3.8.0

Type(s)

\Joomla\CMS\Menu\Node[]