コード例 #1
0
ファイル: Main.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Check for the form errors
  *
  * @return boolean
  */
 public function isValid()
 {
     $validActions = array('validateInput', 'delete');
     return in_array($this->currentAction, $validActions) ?: parent::isValid();
 }
コード例 #2
0
ファイル: Main.php プロジェクト: kingsj/core
 /**
  * Check for the form errors
  *
  * @return boolean
  */
 public function isValid()
 {
     return 'validateInput' === $this->currentAction ?: parent::isValid();
 }