Exemplo n.º 1
0
 /**
  * If 3dsecure is enabled
  *
  * @return boolean
  */
 public function show3dSecure()
 {
     if ($this->config->is3dSecureEnabled()) {
         return true;
     }
     return false;
 }
Exemplo n.º 2
0
 /**
  * @return bool
  */
 public function is3dSecureEnabled()
 {
     return (bool) $this->config->is3dSecureEnabled();
 }
Exemplo n.º 3
0
 /**
  * @return bool
  * @throws LocalizedException
  */
 protected function verify3dSecure()
 {
     return $this->config->is3dSecureEnabled() && $this->_appState->getAreaCode() !== \Magento\Backend\App\Area\FrontNameResolver::AREA_CODE;
 }