1
0
mirror of synced 2025-01-18 22:41:43 +03:00
doctrine2/classes/FormBuilder.class.php
doctrine 571cb46726
2006-04-13 20:37:28 +00:00

23 lines
391 B
PHP

<?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();
}
?>