| 1 |
<?php |
| 2 |
class Element_HTML extends Element { |
| 3 |
public function __construct($value) { |
| 4 |
$properties = array("value" => $value); |
| 5 |
parent::__construct("", "", $properties); |
| 6 |
} |
| 7 |
|
| 8 |
public function render() { |
| 9 |
echo $this->attributes["value"]; |
| 10 |
} |
| 11 |
} |
| 12 |
|