82 lines
2.4 KiB
PHP
82 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Forms;
|
|
|
|
use Icinga\Module\Director\Objects\IcingaTimePeriod;
|
|
use Icinga\Module\Director\Web\Form\DirectorObjectForm;
|
|
|
|
class IcingaTimePeriodRangeForm extends DirectorObjectForm
|
|
{
|
|
/**
|
|
* @var IcingaTimePeriod
|
|
*/
|
|
private $period;
|
|
|
|
public function setup()
|
|
{
|
|
$this->addHidden('timeperiod_id', $this->period->id);
|
|
$this->addElement('text', 'timeperiod_key', array(
|
|
'label' => $this->translate('Day(s)'),
|
|
'description' => $this->translate(
|
|
'Might by, monday, tuesday, 2016-01-28 - have a look at the documentation for more examples'
|
|
),
|
|
));
|
|
|
|
$this->addElement('text', 'timeperiod_value', array(
|
|
'label' => $this->translate('Timerperiods'),
|
|
'description' => $this->translate(
|
|
'One or more time periods, e.g. 00:00-24:00 or 00:00-09:00,17:00-24:00'
|
|
),
|
|
));
|
|
|
|
$this->setButtons();
|
|
|
|
}
|
|
|
|
public function setTimePeriod(IcingaTimePeriod $period)
|
|
{
|
|
$this->period = $period;
|
|
return $this;
|
|
}
|
|
|
|
public function onSuccess()
|
|
{
|
|
$object = $this->object();
|
|
if ($object->hasBeenModified()) {
|
|
$this->period->ranges()->setRange(
|
|
$this->getValue('timeperiod_key'),
|
|
$this->getValue('timeperiod_value')
|
|
);
|
|
}
|
|
|
|
if ($this->period->hasBeenModified()) {
|
|
if (! $object->hasBeenLoadedFromDb()) {
|
|
|
|
$this->setHttpResponseCode(201);
|
|
}
|
|
$msg = sprintf(
|
|
$object->hasBeenLoadedFromDb()
|
|
? $this->translate('The %s has successfully been stored')
|
|
: $this->translate('A new %s has successfully been created'),
|
|
$this->translate($this->getObjectName())
|
|
);
|
|
|
|
$this->period->store($this->db);
|
|
|
|
} else {
|
|
if ($this->isApiRequest()) {
|
|
$this->setHttpResponseCode(304);
|
|
}
|
|
$msg = $this->translate('No action taken, object has not been modified');
|
|
}
|
|
if ($object instanceof IcingaObject) {
|
|
$this->setSuccessUrl(
|
|
'director/' . strtolower($this->getObjectName()),
|
|
$object->getUrlParams()
|
|
);
|
|
}
|
|
|
|
$this->redirectOnSuccess($msg);
|
|
}
|
|
}
|