FormBuilder.class.php 391 Bytes
Newer Older
doctrine's avatar
doctrine committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<?php
/**
 * Doctrine_Form_Builder
 */
class Doctrine_Form_Builder {
    public static function buildForm(Doctrine_Record $record) {

    }
}
class Doctrine_Element {
    private $attributes = array();
    private $data;
    
    public function toHtml() {
        return "<".$this->name.">"."</>";
    }
}
class InputElement {
    private $attributes = array();

}
?>