mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-20 23:00:16 -05:00
23 lines
414 B
PHP
23 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;
|
||
|
|
}
|
||
|
|
}
|