コード例 #1
0
ファイル: Checkbox.php プロジェクト: ehamrin/1dv608
 public function Export()
 {
     if (\Form\Settings::$PopulateCheckboxIndex == true) {
         $this->value = (bool) $this->GetValue();
     }
     if (!empty($this->GetValue()) || $this->GetValue() === FALSE) {
         return parent::Export();
     }
     return null;
 }
コード例 #2
0
ファイル: Text.php プロジェクト: ehamrin/1dv608
 public function __construct($name, $value = "", $type = "text")
 {
     parent::__construct($name, $value);
     $this->SetType($type);
 }