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