32 lines
581 B
PHP
32 lines
581 B
PHP
<?php
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
namespace Icinga\Web\Form\Element;
|
|
|
|
use Zend_Form_Element_Xhtml;
|
|
|
|
/**
|
|
* Implements note element for Zend forms
|
|
*/
|
|
class Note extends Zend_Form_Element_Xhtml
|
|
{
|
|
/**
|
|
* Name of the view helper
|
|
*
|
|
* @var string
|
|
*/
|
|
public $helper = 'formNote';
|
|
|
|
/**
|
|
* Return true to ensure redrawing
|
|
*
|
|
* @param mixed $value The value of to validate (ignored)
|
|
* @return bool Always true
|
|
*/
|
|
public function isValid($value)
|
|
{
|
|
return true;
|
|
}
|
|
}
|