1: <?php
2: /**
3: * Pry Framework
4: *
5: * LICENSE
6: *
7: * This source file is subject to the new BSD license that is bundled
8: * with this package in the file LICENSE.txt.
9: *
10: * @version $Revision: 276 $
11: */
12:
13: /**
14: *
15: * @category Pry
16: * @package Form
17: * @subpackage Form_Element
18: * @version 1.0.0
19: * @author Olivier ROGER <oroger.fr>
20: *
21: */
22: class Form_Element_Html extends Form_Field
23: {
24: private $html;
25:
26: public function __construct($html,$form)
27: {
28: $this->html = $html;
29: }
30:
31: public function __toString()
32: {
33: $html = $this->html;
34: return $html;
35: }
36: }
37: ?>