示例#1
0
 /**
  * Class constructor
  * 
  * @param     string    $elementLabel   (optional)Label
  * @param     string    $text           (optional)Display text
  * @access    public
  * @return    void
  */
 function HTML_QuickForm_static($elementName = null, $elementLabel = null, $text = null)
 {
     //HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel);
     new HTML_QuickForm_element($elementName, $elementLabel);
     self::$_persistantFreeze = false;
     self::$_type = 'static';
     self::$_text = $text;
 }