12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace Cube\Form\Element;
- use Cube\Form\Element;
- class Description extends Element
- {
-
- protected $_element = 'description';
-
- public function __construct($name)
- {
- parent::__construct($this->_element, $name);
- }
-
- public function render()
- {
- return $this->getPrefix() . ' '
- . $this->getValue() . ' '
- . $this->getSuffix();
- }
- }
|