Lines Matching defs:html
307 * @param string $html
311 public function addButtonHTML($name, $html, $pos = -1)
313 return $this->addElement(new ButtonElement($name, $html), $pos);
356 * @param string $html
360 public function addHTML($html, $pos = -1)
362 return $this->addElement(new HTMLElement($html), $pos);
485 $html = '<form ' . buildAttributes($this->attrs()) . '>';
488 $html .= '<input type="hidden" name="' . $name . '" value="' . formText($value) . '" />';
492 $html .= $element->toHTML();
495 $html .= '</form>';
497 return $html;