Introduce form class DashletForm

refs #5600
This commit is contained in:
Johannes Meyer 2015-09-17 08:37:41 +02:00
parent 84f733b177
commit 2d9f20f2c5
1 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,34 @@
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
namespace Icinga\Forms\Navigation;
use Icinga\Web\Form;
class DashletForm extends Form
{
/**
* {@inheritdoc}
*/
public function createElements(array $formData)
{
$this->addElement(
'text',
'pane',
array(
'required' => true,
'label' => $this->translate('Pane'),
'description' => $this->translate('The name of the dashboard pane in which to display this dashlet')
)
);
$this->addElement(
'text',
'url',
array(
'required' => true,
'label' => $this->translate('Url'),
'description' => $this->translate('The url to load in the dashlet')
)
);
}
}