コード例 #1
0
ファイル: CheckboxMulti.php プロジェクト: moiseh/codegen
 public function getValue()
 {
     if (isset($_REQUEST[$this->name])) {
         return array_keys((array) $_REQUEST[$this->name]);
     }
     return (array) parent::getValue();
 }
コード例 #2
0
ファイル: SelectMulti.php プロジェクト: moiseh/codegen
 public function getValue()
 {
     return (array) parent::getValue();
 }