コード例 #1
0
ファイル: Select.php プロジェクト: apioo/fusio-engine
 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
ファイル: Input.php プロジェクト: apioo/fusio-engine
 public function __construct($name, $title, $type = 'text', $help = null)
 {
     parent::__construct($name, $title, $help);
     $this->type = $type;
 }
コード例 #3
0
ファイル: TextArea.php プロジェクト: apioo/fusio-engine
 public function __construct($name, $title, $mode, $help = null)
 {
     parent::__construct($name, $title, $help);
     $this->mode = $mode;
 }