| @@ -234,9 +234,9 @@ | ||
| 234 | 234 |                  if ($promotedProduct == 'true') { | 
| 235 | 235 | $promotedAmount+=$product->getAmount()*$item->getQty(); | 
| 236 | 236 | $promotedMessage = 'Promoted Item: ' . $item->getName() . | 
| 237 | - ' Price: ' . $item->getPrice() . | |
| 238 | - ' Qty: ' . $item->getQty() . | |
| 239 | - ' Item ID: ' . $item->getItemId(); | |
| 237 | + ' Price: ' . $item->getPrice() . | |
| 238 | + ' Qty: ' . $item->getQty() . | |
| 239 | + ' Item ID: ' . $item->getItemId(); | |
| 240 | 240 |                      $metadataOrder->addMetadata('promotedProduct', $promotedMessage); | 
| 241 | 241 | } | 
| 242 | 242 | } | 
| @@ -125,12 +125,12 @@ discard block | ||
| 125 | 125 | $customer = $quote->getCustomer(); | 
| 126 | 126 | $shippingAddress = $quote->getShippingAddress(); | 
| 127 | 127 | |
| 128 | -            if (isset($params['email']) && $params['email']!='') { | |
| 128 | +            if (isset($params['email']) && $params['email'] != '') { | |
| 129 | 129 | $this->session->setEmail($params['email']); //Get guest email after refresh page | 
| 130 | 130 | $customer->setEmail($params['email']); | 
| 131 | 131 |                  $quote->setCheckoutMethod('guest'); | 
| 132 | 132 | $quote->getBillingAddress()->setEmail($params['email']); | 
| 133 | -            } elseif ($customer->getEmail()=='') { | |
| 133 | +            } elseif ($customer->getEmail() == '') { | |
| 134 | 134 | $customer->setEmail($this->session->getEmail()); | 
| 135 | 135 |                  $quote->setCheckoutMethod('guest'); | 
| 136 | 136 | $quote->getBillingAddress()->setEmail($this->session->getEmail()); | 
| @@ -141,7 +141,7 @@ discard block | ||
| 141 | 141 | $currentQuote->setCustomerEmail($customer->getEmail()); | 
| 142 | 142 | $this->quoteRepository->save($currentQuote); | 
| 143 | 143 | |
| 144 | - $userAddress = new Address(); | |
| 144 | + $userAddress = new Address(); | |
| 145 | 145 | $userAddress | 
| 146 | 146 | ->setZipCode($shippingAddress->getPostcode()) | 
| 147 | 147 | ->setFullName($shippingAddress->getFirstname()." ".$shippingAddress->getLastname()) | 
| @@ -163,7 +163,7 @@ discard block | ||
| 163 | 163 | ->setTaxId($tax_id) | 
| 164 | 164 | ; | 
| 165 | 165 | |
| 166 | - $orderBillingAddress = new Address(); | |
| 166 | + $orderBillingAddress = new Address(); | |
| 167 | 167 | $billingAddress = $quote->getBillingAddress(); | 
| 168 | 168 | $orderBillingAddress | 
| 169 | 169 | ->setZipCode($billingAddress->getPostcode()) | 
| @@ -192,7 +192,7 @@ discard block | ||
| 192 | 192 |              if ($customer->getDob()) { | 
| 193 | 193 | $orderUser->setDateOfBirth($customer->getDob()); | 
| 194 | 194 | } | 
| 195 | -            if ($customer->getTaxvat()!='') { | |
| 195 | +            if ($customer->getTaxvat() != '') { | |
| 196 | 196 | $orderUser->setDni($customer->getTaxvat()); | 
| 197 | 197 | $orderBillingAddress->setDni($customer->getTaxvat()); | 
| 198 | 198 | $orderShippingAddress->setDni($customer->getTaxvat()); | 
| @@ -232,11 +232,11 @@ discard block | ||
| 232 | 232 | |
| 233 | 233 | $promotedProduct = $this->isPromoted($item); | 
| 234 | 234 |                  if ($promotedProduct == 'true') { | 
| 235 | - $promotedAmount+=$product->getAmount()*$item->getQty(); | |
| 236 | - $promotedMessage = 'Promoted Item: ' . $item->getName() . | |
| 237 | - ' Price: ' . $item->getPrice() . | |
| 238 | - ' Qty: ' . $item->getQty() . | |
| 239 | - ' Item ID: ' . $item->getItemId(); | |
| 235 | + $promotedAmount += $product->getAmount() * $item->getQty(); | |
| 236 | + $promotedMessage = 'Promoted Item: '.$item->getName(). | |
| 237 | + ' Price: '.$item->getPrice(). | |
| 238 | + ' Qty: '.$item->getQty(). | |
| 239 | + ' Item ID: '.$item->getItemId(); | |
| 240 | 240 |                      $metadataOrder->addMetadata('promotedProduct', $promotedMessage); | 
| 241 | 241 | } | 
| 242 | 242 | } | 
| @@ -261,8 +261,8 @@ discard block | ||
| 261 | 261 | $okUrlRoute = 'pagantis/notify/indexV2'; | 
| 262 | 262 | } | 
| 263 | 263 | |
| 264 | - $okUrlUser = $this->_url->getUrl($okUrlRoute, ['_query' => ['quoteId'=>$quoteId,'origin'=>'redirect']]); | |
| 265 | - $okUrlNot = $this->_url->getUrl($okUrlRoute, ['_query' => ['quoteId'=>$quoteId,'origin'=>'notification']]); | |
| 264 | + $okUrlUser = $this->_url->getUrl($okUrlRoute, ['_query' => ['quoteId'=>$quoteId, 'origin'=>'redirect']]); | |
| 265 | + $okUrlNot = $this->_url->getUrl($okUrlRoute, ['_query' => ['quoteId'=>$quoteId, 'origin'=>'notification']]); | |
| 266 | 266 | |
| 267 | 267 | $orderConfigurationUrls | 
| 268 | 268 | ->setCancel($cancelUrl) | 
| @@ -277,15 +277,12 @@ discard block | ||
| 277 | 277 | ->setType(Channel::ONLINE) | 
| 278 | 278 | ; | 
| 279 | 279 | |
| 280 | - $haystack = ($this->store->getLocale()!=null) ? $this->store->getLocale() : $this->getResolverCountry(); | |
| 280 | + $haystack = ($this->store->getLocale() != null) ? $this->store->getLocale() : $this->getResolverCountry(); | |
| 281 | 281 | $langCountry = strtolower(strstr($haystack, '_', true)); | 
| 282 | 282 | $allowedCountries = unserialize($this->extraConfig['PAGANTIS_ALLOWED_COUNTRIES']); | 
| 283 | 283 | |
| 284 | 284 | $purchaseCountry = | 
| 285 | - in_array($langCountry, $allowedCountries) ? $langCountry : | |
| 286 | - in_array(strtolower($shippingAddress->getCountry()), $allowedCountries)? $shippingAddress->getCountry(): | |
| 287 | - in_array(strtolower($billingAddress->getCountry()), $allowedCountries)? $billingAddress->getCountry() : | |
| 288 | - null; | |
| 285 | + in_array($langCountry, $allowedCountries) ? $langCountry : in_array(strtolower($shippingAddress->getCountry()), $allowedCountries) ? $shippingAddress->getCountry() : in_array(strtolower($billingAddress->getCountry()), $allowedCountries) ? $billingAddress->getCountry() : null; | |
| 289 | 286 | |
| 290 | 287 | $orderConfiguration = new Configuration(); | 
| 291 | 288 | $orderConfiguration | 
| @@ -303,7 +300,7 @@ discard block | ||
| 303 | 300 | ->setUser($orderUser) | 
| 304 | 301 | ; | 
| 305 | 302 | |
| 306 | -            if ($this->config['pagantis_public_key']=='' || $this->config['pagantis_private_key']=='') { | |
| 303 | +            if ($this->config['pagantis_public_key'] == '' || $this->config['pagantis_private_key'] == '') { | |
| 307 | 304 |                  throw new \Exception('Public and Secret Key not found'); | 
| 308 | 305 | } | 
| 309 | 306 | |
| @@ -329,7 +326,7 @@ discard block | ||
| 329 | 326 | } | 
| 330 | 327 | |
| 331 | 328 | $displayMode = $this->extraConfig['PAGANTIS_FORM_DISPLAY_TYPE']; | 
| 332 | -        if ($displayMode==='0') { | |
| 329 | +        if ($displayMode === '0') { | |
| 333 | 330 | echo $url; | 
| 334 | 331 | exit; | 
| 335 | 332 |          } else { | 
| @@ -351,11 +348,11 @@ discard block | ||
| 351 | 348 | private function getOrders($customerId) | 
| 352 | 349 |      { | 
| 353 | 350 | $orderCollection = array(); | 
| 354 | -        if ($customerId!='') { | |
| 351 | +        if ($customerId != '') { | |
| 355 | 352 |              $this->orderCollection->addAttributeToFilter('customer_id', $customerId) | 
| 356 | 353 | ->addAttributeToFilter( | 
| 357 | 354 | 'status', | 
| 358 | - ['in' => ['processing','pending','complete']] | |
| 355 | + ['in' => ['processing', 'pending', 'complete']] | |
| 359 | 356 | ) | 
| 360 | 357 | ->load(); | 
| 361 | 358 | $orderCollection = $this->orderCollection->getData(); | 
| @@ -398,7 +395,7 @@ discard block | ||
| 398 | 395 | $tableName = $this->dbObject->getTableName(self::ORDERS_TABLE); | 
| 399 | 396 | return $dbConnection->insertOnDuplicate( | 
| 400 | 397 | $tableName, | 
| 401 | -            array('id'=>$quoteId,'order_id'=>$pagantisOrderId), | |
| 398 | +            array('id'=>$quoteId, 'order_id'=>$pagantisOrderId), | |
| 402 | 399 |              array('order_id') | 
| 403 | 400 | ); | 
| 404 | 401 | } |