* @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 * @author Icinga Development Team */ // {{{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; } }