------------------------------------------------------------------------------- $Id$ -----------------------------------------------------------------------------*/ require_once 'MECON/HTML/QuickFormSimple.php'; require_once 'MECON/HTML/QuickForm/Renderer/Tabla.php'; /** * QuickForm de uso general del MECON. */ class MECON_HTML_QuickForm extends MECON_HTML_QuickFormSimple { var $renderer; function MECON_HTML_QuickForm($formName='', $method='post', $action='', $target='_self', $attributes=null) { parent::MECON_HTML_QuickFormSimple($formName, $method, $action, $target, $attributes); $this->renderer =& new MECON_HTML_QuickForm_Renderer_Tabla(); } function toHtml() { $this->accept($this->renderer); return $this->renderer->toHtml(); } /** * TODO aclarar que usar * $FORM->renderer->updateAttributes() * * @deprecated */ function setRendererOpts($opts) { $this->renderer->updateAttributes($opts); } /** * TODO aclarar que usar * $FORM->renderer->updateAttributes() * * @deprecated */ function getRendererOpts() { return $this->renderer->getAttributes(); } /** * TODO aclarar que usar * $FORM->renderer->updateAttributes() * * @deprecated */ function updateRendererOpts($opts) { $this->renderer->updateAttributes($opts); } function getCSS() { return $this->renderer->getCSS(); } } ?>