icingaweb2-module-businessp.../library/Businessprocess/Web/Form/Element/SimpleNote.php
2016-12-08 10:11:46 +01:00

22 lines
414 B
PHP

<?php
namespace Icinga\Module\Businessprocess\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;
}
}