예제 #1
0
 /**
  * Class constructor
  *
  * @param     string    $name       (optional)Name attribute of the SELECT
  * @param     int       $size       (optional) Size attribute of the SELECT
  * @param     mixed     $attributes (optional)Either a typical HTML attribute string
  *                                  or an associative array
  * @param     int       $tabOffset  (optional)Number of tabs to offset HTML source
  * @access    public
  * @return    void
  * @throws
  */
 function dmHTML_Select($name = '', $size = 1, $attributes = null, $tabOffset = 0)
 {
     parent::HTML_Select($name, $size, false, $attributes, $tabOffset);
 }