示例#1
0
 /**
  * Class constructor
  * 
  * @param     string    Input field name attribute
  * @param     mixed     Label(s) for a field
  * @param     mixed     Either a typical HTML attribute string or an associative array
  * @since     1.0
  * @access    public
  * @return    void
  */
 function HTML_QuickForm_textarea($elementName = null, $elementLabel = null, $attributes = null)
 {
     //HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
     new HTML_QuickForm_element($elementName, $elementLabel, $attributes);
     self::$_persistantFreeze = true;
     self::$_type = 'textarea';
 }