2016-03-06 01:00:50 +01:00
|
|
|
<?php
|
|
|
|
|
2016-03-08 22:30:12 +01:00
|
|
|
// Avoid complaints about missing namespace and invalid class name
|
|
|
|
// @codingStandardsIgnoreStart
|
2016-03-06 01:00:50 +01:00
|
|
|
class Zend_View_Helper_FormSimpleNote extends Zend_View_Helper_FormElement
|
|
|
|
{
|
2016-03-08 22:30:12 +01:00
|
|
|
// @codingStandardsIgnoreEnd
|
|
|
|
|
2016-03-06 01:00:50 +01:00
|
|
|
public function formSimpleNote($name, $value = null)
|
|
|
|
{
|
|
|
|
$info = $this->_getInfo($name, $value);
|
|
|
|
extract($info); // name, value, attribs, options, listsep, disable
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
}
|