示例#1
0
文件: Select.php 项目: uqiauto/fusio
 public function __construct($name, $title, array $options = array(), $help = null)
 {
     parent::__construct($name, $title, $help);
     foreach ($options as $key => $value) {
         $this->addOption($key, $value);
     }
 }
示例#2
0
 public function __construct($name, $title, $mode, $help = null)
 {
     parent::__construct($name, $title, $help);
     $this->mode = $mode;
 }
示例#3
0
文件: Input.php 项目: uqiauto/fusio
 public function __construct($name, $title, $type = 'text', $help = null)
 {
     parent::__construct($name, $title, $help);
     $this->type = $type;
 }