예제 #1
0
 /**
  * Create a select box field with empty option support.
  *
  * @param string $name
  * @param array $list
  * @param string $selected
  * @param array $options
  * @return string 
  * @static 
  */
 public static function select($name, $list = array(), $selected = null, $options = array())
 {
     return \October\Rain\Html\FormBuilder::select($name, $list, $selected, $options);
 }