Exemplo n.º 1
0
 /**
  * Class constructor
  * 
  * @param     string    $elementName    (optional)Input field name attribute
  * @param     string    $elementLabel   (optional)Input field label
  * @param     mixed     $attributes     (optional)Either a typical HTML attribute string 
  *                                      or an associative array
  * @since     1.0
  * @access    public
  * @return    void
  */
 function HTML_QuickForm_text($elementName = null, $elementLabel = null, $attributes = null)
 {
     //HTML_QuickForm_input::HTML_QuickForm_input($elementName, $elementLabel, $attributes);
     new HTML_QuickForm_input($elementName, $elementLabel, $attributes);
     self::$_persistantFreeze = true;
     self::setType('text');
 }