1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace Ppb\Form\Element;
- use Cube\Form\Element\Hidden;
- class DescriptionHidden extends Hidden
- {
-
- public function __construct($name)
- {
- parent::__construct($name);
- $this->setHidden(false);
- }
-
- public function render()
- {
- return $this->getPrefix() . ' '
- . $this->getValue() . ' '
- . $this->getSuffix()
- . parent::render();
- }
- }
|