Johannes Meyer abda65f4bd Refactor command controller and implement restart action.
Refactored existing command controller so that it reflects the
correct coding style, rewritten the icinga restart command and
added a very simple form for it.

refs #4355
2013-07-23 14:46:24 +02:00

15 lines
257 B
PHP

<?php
namespace Icinga\Form\Elements;
class Note extends \Zend_Form_Element
{
public $helper = "formNote";
public function __construct($value)
{
parent::__construct("notification");
$this->setValue("<p>$value</p>");
}
}
?>