2015-09-01 12:48:45 +02:00
|
|
|
<?php
|
2016-02-08 15:41:00 +01:00
|
|
|
/* Icinga Web 2 | (c) 2015 Icinga Development Team | GPLv2+ */
|
2015-09-01 12:48:45 +02:00
|
|
|
|
|
|
|
namespace Icinga\Web\Navigation;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dropdown navigation item
|
|
|
|
*
|
|
|
|
* @see \Icinga\Web\Navigation\Navigation For a usage example.
|
|
|
|
*/
|
|
|
|
class DropdownItem extends NavigationItem
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function init()
|
|
|
|
{
|
|
|
|
$this->children->setLayout(Navigation::LAYOUT_DROPDOWN);
|
|
|
|
}
|
|
|
|
}
|