mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-20 14:50:11 -05:00
20 lines
358 B
PHP
20 lines
358 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Businessprocess\Web\Form\Element;
|
|
|
|
class SimpleNote extends FormElement
|
|
{
|
|
public $helper = 'formSimpleNote';
|
|
|
|
/**
|
|
* Always ignore this element
|
|
*
|
|
* @var boolean
|
|
*/
|
|
protected $_ignore = true; // phpcs:ignore
|
|
|
|
public function isValid($value, $context = null)
|
|
{
|
|
return true;
|
|
}
|
|
}
|