コード例 #1
0
ファイル: Confirm.php プロジェクト: shabbirvividads/magento2
 /**
  * Show the confirmation message and return result.
  *
  * @return bool
  */
 public function show()
 {
     $char = parent::show();
     if ($this->ignoreCase) {
         $response = strtolower($char) === strtolower($this->yesChar);
     } else {
         $response = $char === $this->yesChar;
     }
     return $this->lastResponse = $response;
 }
コード例 #2
0
ファイル: Confirm.php プロジェクト: Baft/Zend-Form
 /**
  * Show the confirmation message and return result.
  *
  * @return bool
  */
 public function show()
 {
     $response = parent::show() === $this->yesChar;
     return $this->lastResponse = $response;
 }