* @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 * @author Icinga Development Team */ // {{{ICINGA_LICENSE_HEADER}}} namespace Monitoring\Form\Command; /** * Form to handle DelayNotification command */ class DelayNotification extends AbstractCommand { /** * Interface method to build the form * @see Form::create() */ protected function create() { $this->addElement( 'text', 'minutes', array( 'label' => t('Notification delay'), 'style' => 'width: 80px;', 'value' => 0 ) ); $this->addNote('Delay next notification in minutes from now'); $this->setSubmitLabel(t('Delay notification')); parent::create(); } }