mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-02-03 08:49:27 -05:00
12 lines
384 B
PHP
12 lines
384 B
PHP
<?php
|
|
|
|
// Avoid complaints about missing namespace and invalid class name
|
|
class Zend_View_Helper_FormSimpleNote extends Zend_View_Helper_FormElement // phpcs:ignore
|
|
{
|
|
public function formSimpleNote($name, $value = null)
|
|
{
|
|
$info = $this->_getInfo($name, $value);
|
|
extract($info); // name, value, attribs, options, listsep, disable
|
|
return $value;
|
|
}
|
|
}
|