mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-09-26 11:19:14 +02:00
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
15 lines
257 B
PHP
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>");
|
|
}
|
|
}
|
|
|
|
?>
|