icingaweb2-module-director/library/Director/Web/Form/Element/SimpleNote.php

23 lines
407 B
PHP

<?php
namespace Icinga\Module\Director\Web\Form\Element;
class SimpleNote extends FormElement
{
public $helper = 'formSimpleNote';
/**
* Always ignore this element
* @codingStandardsIgnoreStart
*
* @var boolean
*/
protected $_ignore = true;
// @codingStandardsIgnoreEnd
public function isValid($value, $context = null)
{
return true;
}
}