requireAttributes('id', 'action'); $context->set('_form_id', $this->getAttribute('id')); $action = $renderer->doText($this->getAttribute('action')); $ret = "
"; $ret .= $renderer->doNode($node); $ret .= "
"; return $ret; } } class FAInputTag extends FATemplateTag { function parse(&$context, &$renderer, &$node) { $this->requireAttributes('name'); $name = $this->getAttribute('name'); $type = $this->getAttribute('type', 'text'); $extra = $this->getAttributeString('name', 'type'); if ($type == 'text') { $ret = ""; } else { $ret = ''; } return $ret; } } ?>