2015-09-17 13:46:08 +02:00
|
|
|
<?php
|
|
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
|
|
|
|
|
|
|
namespace Icinga\Forms\Navigation;
|
|
|
|
|
|
|
|
class MenuItemForm extends NavigationItemForm
|
|
|
|
{
|
2015-09-18 09:48:22 +02:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
protected $requiresParentSelection = true;
|
|
|
|
|
2015-09-17 13:46:08 +02:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function createElements(array $formData)
|
|
|
|
{
|
|
|
|
parent::createElements($formData);
|
2015-09-18 09:48:22 +02:00
|
|
|
$this->getParent()->getElement('parent')->setDescription($this->translate(
|
|
|
|
'The parent menu to assign this menu entry to. Select "None" to make this a main menu entry'
|
|
|
|
));
|
2015-09-17 13:46:08 +02:00
|
|
|
}
|
|
|
|
}
|