@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | try { |
63 | 63 | require_once(__ROOT__.'/vendor/autoload.php'); |
64 | 64 | try { |
65 | - if ($_SERVER['REQUEST_METHOD'] == 'GET' && $_GET['origin'] == 'notification') { |
|
65 | + if ($_SERVER['REQUEST_METHOD']=='GET' && $_GET['origin']=='notification') { |
|
66 | 66 | return $this->buildResponse(); |
67 | 67 | } |
68 | 68 | $this->checkConcurrency(); |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | private function checkConcurrency() |
111 | 111 | { |
112 | 112 | $this->woocommerceOrderId = $_GET['order-received']; |
113 | - if ($this->woocommerceOrderId == '') { |
|
113 | + if ($this->woocommerceOrderId=='') { |
|
114 | 114 | throw new QuoteNotFoundException(); |
115 | 115 | } |
116 | 116 | |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | $queryResult = $wpdb->get_row("select order_id from $tableName where id='".$this->woocommerceOrderId."'"); |
143 | 143 | $this->pagantisOrderId = $queryResult->order_id; |
144 | 144 | |
145 | - if ($this->pagantisOrderId == '') { |
|
145 | + if ($this->pagantisOrderId=='') { |
|
146 | 146 | throw new NoIdentificationException(); |
147 | 147 | } |
148 | 148 | } |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | $status = '-'; |
177 | 177 | } |
178 | 178 | |
179 | - if ($status === Order::STATUS_CONFIRMED) { |
|
179 | + if ($status===Order::STATUS_CONFIRMED) { |
|
180 | 180 | return true; |
181 | 181 | } |
182 | 182 | throw new WrongStatusException($status); |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | ); |
198 | 198 | |
199 | 199 | if (!$this->woocommerceOrder->has_status($isValidStatus)) { // TO CONFIRM |
200 | - $logMessage = "WARNING checkMerchantOrderStatus." . |
|
200 | + $logMessage = "WARNING checkMerchantOrderStatus.". |
|
201 | 201 | " Merchant order id:".$this->woocommerceOrder->get_id(). |
202 | 202 | " Merchant order status:".$this->woocommerceOrder->get_status(). |
203 | 203 | " Pagantis order id:".$this->pagantisOrder->getStatus(). |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | { |
220 | 220 | $pagantisAmount = $this->pagantisOrder->getShoppingCart()->getTotalAmount(); |
221 | 221 | $wcAmount = intval(strval(100 * $this->woocommerceOrder->get_total())); |
222 | - if ($pagantisAmount != $wcAmount) { |
|
222 | + if ($pagantisAmount!=$wcAmount) { |
|
223 | 223 | throw new AmountMismatchException($pagantisAmount, $wcAmount); |
224 | 224 | } |
225 | 225 | } |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | $this->pagantisOrder = $this->orderClient->confirmOrder($this->pagantisOrderId); |
244 | 244 | } catch (\Exception $e) { |
245 | 245 | $this->pagantisOrder = $this->orderClient->getOrder($this->pagantisOrderId); |
246 | - if ($this->pagantisOrder->getStatus() !== Order::STATUS_CONFIRMED) { |
|
246 | + if ($this->pagantisOrder->getStatus()!==Order::STATUS_CONFIRMED) { |
|
247 | 247 | throw new UnknownException($e->getMessage()); |
248 | 248 | } else { |
249 | 249 | $logMessage = 'Concurrency issue: Order_id '.$this->pagantisOrderId.' was confirmed by other process'; |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | global $wpdb; |
268 | 268 | $tableName = $wpdb->prefix.self::ORDERS_TABLE; |
269 | 269 | |
270 | - if ($wpdb->get_var("SHOW TABLES LIKE '$tableName'") != $tableName) { |
|
270 | + if ($wpdb->get_var("SHOW TABLES LIKE '$tableName'")!=$tableName) { |
|
271 | 271 | $charset_collate = $wpdb->get_charset_collate(); |
272 | 272 | $sql = "CREATE TABLE $tableName (id int, order_id varchar(50), wc_order_id varchar(50), |
273 | 273 | UNIQUE KEY id (id)) $charset_collate"; |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | global $wpdb; |
286 | 286 | $tableName = $wpdb->prefix.self::LOGS_TABLE; |
287 | 287 | |
288 | - if ($wpdb->get_var("SHOW TABLES LIKE '$tableName'") != $tableName) { |
|
288 | + if ($wpdb->get_var("SHOW TABLES LIKE '$tableName'")!=$tableName) { |
|
289 | 289 | $charset_collate = $wpdb->get_charset_collate(); |
290 | 290 | $sql = "CREATE TABLE $tableName ( id int NOT NULL AUTO_INCREMENT, log text NOT NULL, |
291 | 291 | createdAt timestamp DEFAULT CURRENT_TIMESTAMP, UNIQUE KEY id (id)) $charset_collate"; |
@@ -342,12 +342,12 @@ discard block |
||
342 | 342 | $metadataOrder = $this->pagantisOrder->getMetadata(); |
343 | 343 | $metadataInfo = null; |
344 | 344 | foreach ($metadataOrder as $metadataKey => $metadataValue) { |
345 | - if ($metadataKey == 'promotedProduct') { |
|
346 | - $metadataInfo.= "/Producto promocionado = $metadataValue"; |
|
345 | + if ($metadataKey=='promotedProduct') { |
|
346 | + $metadataInfo .= "/Producto promocionado = $metadataValue"; |
|
347 | 347 | } |
348 | 348 | } |
349 | 349 | |
350 | - if ($metadataInfo != null) { |
|
350 | + if ($metadataInfo!=null) { |
|
351 | 351 | $this->woocommerceOrder->add_order_note($metadataInfo); |
352 | 352 | } |
353 | 353 | |
@@ -416,13 +416,13 @@ discard block |
||
416 | 416 | { |
417 | 417 | global $wpdb; |
418 | 418 | $tableName = $wpdb->prefix.self::CONCURRENCY_TABLE; |
419 | - if ($orderId == null) { |
|
419 | + if ($orderId==null) { |
|
420 | 420 | $query = "DELETE FROM $tableName WHERE createdAt<(NOW()- INTERVAL ".self::CONCURRENCY_TIMEOUT." SECOND)"; |
421 | 421 | } else { |
422 | 422 | $query = "DELETE FROM $tableName WHERE order_id = $orderId"; |
423 | 423 | } |
424 | 424 | $resultDelete = $wpdb->query($query); |
425 | - if ($resultDelete === false) { |
|
425 | + if ($resultDelete===false) { |
|
426 | 426 | throw new ConcurrencyException(); |
427 | 427 | } |
428 | 428 | } |
@@ -437,8 +437,8 @@ discard block |
||
437 | 437 | global $wpdb; |
438 | 438 | $tableName = $wpdb->prefix.self::CONCURRENCY_TABLE; |
439 | 439 | $insertResult = $wpdb->insert($tableName, array('order_id' => $orderId)); |
440 | - if ($insertResult === false) { |
|
441 | - if ($this->getOrigin() == 'Notify') { |
|
440 | + if ($insertResult===false) { |
|
441 | + if ($this->getOrigin()=='Notify') { |
|
442 | 442 | throw new ConcurrencyException(); |
443 | 443 | } else { |
444 | 444 | $query = sprintf( |
@@ -449,8 +449,8 @@ discard block |
||
449 | 449 | ); |
450 | 450 | $resultSeconds = $wpdb->get_row($query); |
451 | 451 | $restSeconds = isset($resultSeconds) ? ($resultSeconds->rest) : 0; |
452 | - $secondsToExpire = ($restSeconds>self::CONCURRENCY_TIMEOUT) ? self::CONCURRENCY_TIMEOUT : $restSeconds; |
|
453 | - sleep($secondsToExpire+1); |
|
452 | + $secondsToExpire = ($restSeconds > self::CONCURRENCY_TIMEOUT) ? self::CONCURRENCY_TIMEOUT : $restSeconds; |
|
453 | + sleep($secondsToExpire + 1); |
|
454 | 454 | |
455 | 455 | $logMessage = sprintf( |
456 | 456 | "User waiting %s seconds, default seconds %s, bd time to expire %s seconds", |
@@ -475,7 +475,7 @@ discard block |
||
475 | 475 | { |
476 | 476 | $this->unblockConcurrency($this->woocommerceOrderId); |
477 | 477 | |
478 | - if ($exception == null) { |
|
478 | + if ($exception==null) { |
|
479 | 479 | $jsonResponse = new JsonSuccessResponse(); |
480 | 480 | } else { |
481 | 481 | $jsonResponse = new JsonExceptionResponse(); |
@@ -485,7 +485,7 @@ discard block |
||
485 | 485 | $jsonResponse->setMerchantOrderId($this->woocommerceOrderId); |
486 | 486 | $jsonResponse->setPagantisOrderId($this->pagantisOrderId); |
487 | 487 | |
488 | - if ($_SERVER['REQUEST_METHOD'] == 'POST') { |
|
488 | + if ($_SERVER['REQUEST_METHOD']=='POST') { |
|
489 | 489 | $jsonResponse->printResponse(); |
490 | 490 | } else { |
491 | 491 | return $jsonResponse; |
@@ -54,33 +54,33 @@ discard block |
||
54 | 54 | $this->method_title = ucfirst($this->id); |
55 | 55 | |
56 | 56 | //Useful vars |
57 | - $this->template_path = plugin_dir_path(__FILE__) . '../templates/'; |
|
57 | + $this->template_path = plugin_dir_path(__FILE__).'../templates/'; |
|
58 | 58 | $this->allowed_currencies = array("EUR"); |
59 | - $this->mainFileLocation = dirname(plugin_dir_path(__FILE__)) . '/WC_Pagantis.php'; |
|
59 | + $this->mainFileLocation = dirname(plugin_dir_path(__FILE__)).'/WC_Pagantis.php'; |
|
60 | 60 | $this->plugin_info = get_file_data($this->mainFileLocation, array('Version' => 'Version'), false); |
61 | 61 | $this->language = strstr(get_locale(), '_', true); |
62 | 62 | $this->icon = 'https://cdn.digitalorigin.com/assets/master/logos/pg-130x30.svg'; |
63 | 63 | |
64 | 64 | //Panel form fields |
65 | - $this->form_fields = include(plugin_dir_path(__FILE__).'../includes/settings-pagantis.php');//Panel options |
|
65 | + $this->form_fields = include(plugin_dir_path(__FILE__).'../includes/settings-pagantis.php'); //Panel options |
|
66 | 66 | $this->init_settings(); |
67 | 67 | |
68 | 68 | $this->extraConfig = $this->getExtraConfig(); |
69 | 69 | $this->title = __($this->extraConfig['PAGANTIS_TITLE'], 'pagantis'); |
70 | 70 | $this->method_description = "Financial Payment Gateway. Enable the possibility for your customers to pay their order in confortable installments with Pagantis."; |
71 | 71 | |
72 | - $this->settings['ok_url'] = ($this->extraConfig['PAGANTIS_URL_OK']!='')?$this->extraConfig['PAGANTIS_URL_OK']:$this->generateOkUrl(); |
|
73 | - $this->settings['ko_url'] = ($this->extraConfig['PAGANTIS_URL_KO']!='')?$this->extraConfig['PAGANTIS_URL_KO']:$this->generateKoUrl(); |
|
72 | + $this->settings['ok_url'] = ($this->extraConfig['PAGANTIS_URL_OK']!='') ? $this->extraConfig['PAGANTIS_URL_OK'] : $this->generateOkUrl(); |
|
73 | + $this->settings['ko_url'] = ($this->extraConfig['PAGANTIS_URL_KO']!='') ? $this->extraConfig['PAGANTIS_URL_KO'] : $this->generateKoUrl(); |
|
74 | 74 | foreach ($this->settings as $setting_key => $setting_value) { |
75 | 75 | $this->$setting_key = $setting_value; |
76 | 76 | } |
77 | 77 | |
78 | 78 | //Hooks |
79 | - add_action('woocommerce_update_options_payment_gateways_'.$this->id, array($this,'process_admin_options')); //Save plugin options |
|
80 | - add_action('admin_notices', array($this, 'pagantisCheckFields')); //Check config fields |
|
81 | - add_action('woocommerce_receipt_'.$this->id, array($this, 'pagantisReceiptPage')); //Pagantis form |
|
82 | - add_action('woocommerce_api_wcpagantisgateway', array($this, 'pagantisNotification')); //Json Notification |
|
83 | - add_filter('woocommerce_payment_complete_order_status', array($this,'pagantisCompleteStatus'), 10, 3); |
|
79 | + add_action('woocommerce_update_options_payment_gateways_'.$this->id, array($this, 'process_admin_options')); //Save plugin options |
|
80 | + add_action('admin_notices', array($this, 'pagantisCheckFields')); //Check config fields |
|
81 | + add_action('woocommerce_receipt_'.$this->id, array($this, 'pagantisReceiptPage')); //Pagantis form |
|
82 | + add_action('woocommerce_api_wcpagantisgateway', array($this, 'pagantisNotification')); //Json Notification |
|
83 | + add_filter('woocommerce_payment_complete_order_status', array($this, 'pagantisCompleteStatus'), 10, 3); |
|
84 | 84 | add_filter('load_textdomain_mofile', array($this, 'loadPagantisTranslation'), 10, 2); |
85 | 85 | } |
86 | 86 | |
@@ -92,8 +92,8 @@ discard block |
||
92 | 92 | */ |
93 | 93 | public function loadPagantisTranslation($mofile, $domain) |
94 | 94 | { |
95 | - if ('pagantis' === $domain) { |
|
96 | - $mofile = WP_LANG_DIR . '/../plugins/pagantis/languages/pagantis-' . get_locale() . '.mo'; |
|
95 | + if ('pagantis'===$domain) { |
|
96 | + $mofile = WP_LANG_DIR.'/../plugins/pagantis/languages/pagantis-'.get_locale().'.mo'; |
|
97 | 97 | } |
98 | 98 | return $mofile; |
99 | 99 | } |
@@ -125,24 +125,24 @@ discard block |
||
125 | 125 | public function pagantisCheckFields() |
126 | 126 | { |
127 | 127 | $error_string = ''; |
128 | - if ($this->settings['enabled'] !== 'yes') { |
|
128 | + if ($this->settings['enabled']!=='yes') { |
|
129 | 129 | return; |
130 | 130 | } elseif (!version_compare(phpversion(), '5.3.0', '>=')) { |
131 | - $error_string = __(' is not compatible with your php and/or curl version', 'pagantis'); |
|
131 | + $error_string = __(' is not compatible with your php and/or curl version', 'pagantis'); |
|
132 | 132 | $this->settings['enabled'] = 'no'; |
133 | 133 | } elseif ($this->settings['pagantis_public_key']=="" || $this->settings['pagantis_private_key']=="") { |
134 | 134 | $error_string = __(' is not configured correctly, the fields Public Key and Secret Key are mandatory for use this plugin', 'pagantis'); |
135 | 135 | $this->settings['enabled'] = 'no'; |
136 | 136 | } elseif (!in_array(get_woocommerce_currency(), $this->allowed_currencies)) { |
137 | - $error_string = __(' only can be used in Euros', 'pagantis'); |
|
137 | + $error_string = __(' only can be used in Euros', 'pagantis'); |
|
138 | 138 | $this->settings['enabled'] = 'no'; |
139 | - } elseif ($this->extraConfig['PAGANTIS_SIMULATOR_MAX_INSTALLMENTS']<'2' |
|
140 | - || $this->extraConfig['PAGANTIS_SIMULATOR_MAX_INSTALLMENTS']>'12') { |
|
139 | + } elseif ($this->extraConfig['PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'] < '2' |
|
140 | + || $this->extraConfig['PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'] > '12') { |
|
141 | 141 | $error_string = __(' only can be payed from 2 to 12 installments', 'pagantis'); |
142 | - } elseif ($this->extraConfig['PAGANTIS_SIMULATOR_START_INSTALLMENTS']<'2' |
|
143 | - || $this->extraConfig['PAGANTIS_SIMULATOR_START_INSTALLMENTS']>'12') { |
|
142 | + } elseif ($this->extraConfig['PAGANTIS_SIMULATOR_START_INSTALLMENTS'] < '2' |
|
143 | + || $this->extraConfig['PAGANTIS_SIMULATOR_START_INSTALLMENTS'] > '12') { |
|
144 | 144 | $error_string = __(' only can be payed from 2 to 12 installments', 'pagantis'); |
145 | - } elseif ($this->extraConfig['PAGANTIS_DISPLAY_MIN_AMOUNT']<0) { |
|
145 | + } elseif ($this->extraConfig['PAGANTIS_DISPLAY_MIN_AMOUNT'] < 0) { |
|
146 | 146 | $error_string = __(' can not have a minimum amount less than 0', 'pagantis'); |
147 | 147 | } |
148 | 148 | |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | |
177 | 177 | $shippingAddress = $order->get_address('shipping'); |
178 | 178 | $billingAddress = $order->get_address('billing'); |
179 | - if ($shippingAddress['address_1'] == '') { |
|
179 | + if ($shippingAddress['address_1']=='') { |
|
180 | 180 | $shippingAddress = $billingAddress; |
181 | 181 | } |
182 | 182 | |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | ->setNationalId($national_id) |
204 | 204 | ->setTaxId($tax_id) |
205 | 205 | ; |
206 | - $orderBillingAddress = new Address(); |
|
206 | + $orderBillingAddress = new Address(); |
|
207 | 207 | $orderBillingAddress |
208 | 208 | ->setZipCode($billingAddress['postcode']) |
209 | 209 | ->setFullName($billingAddress['first_name']." ".$billingAddress['last_name']) |
@@ -274,12 +274,12 @@ discard block |
||
274 | 274 | $details->addProduct($product); |
275 | 275 | |
276 | 276 | $promotedProduct = $this->isPromoted($item->get_product_id()); |
277 | - if ($promotedProduct == 'true') { |
|
278 | - $promotedAmount+=$product->getAmount(); |
|
279 | - $promotedMessage = 'Promoted Item: ' . $wcProduct->get_name() . |
|
280 | - ' - Price: ' . $item->get_total() . |
|
281 | - ' - Qty: ' . $product->getQuantity() . |
|
282 | - ' - Item ID: ' . $item['id_product']; |
|
277 | + if ($promotedProduct=='true') { |
|
278 | + $promotedAmount += $product->getAmount(); |
|
279 | + $promotedMessage = 'Promoted Item: '.$wcProduct->get_name(). |
|
280 | + ' - Price: '.$item->get_total(). |
|
281 | + ' - Qty: '.$product->getQuantity(). |
|
282 | + ' - Item ID: '.$item['id_product']; |
|
283 | 283 | $promotedMessage = substr($promotedMessage, 0, 999); |
284 | 284 | $metadataOrder->addMetadata('promotedProduct', $promotedMessage); |
285 | 285 | } |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | wc_get_template('iframe.php', $template_fields, '', $this->template_path); |
362 | 362 | } |
363 | 363 | } catch (\Exception $exception) { |
364 | - wc_add_notice(__('Payment error ', 'pagantis') . $exception->getMessage(), 'error'); |
|
364 | + wc_add_notice(__('Payment error ', 'pagantis').$exception->getMessage(), 'error'); |
|
365 | 365 | $this->insertLog($exception); |
366 | 366 | $checkout_url = get_permalink(wc_get_page_id('checkout')); |
367 | 367 | wp_redirect($checkout_url); |
@@ -375,7 +375,7 @@ discard block |
||
375 | 375 | public function pagantisNotification() |
376 | 376 | { |
377 | 377 | try { |
378 | - $origin = ($_SERVER['REQUEST_METHOD'] == 'POST') ? 'Notify' : 'Order'; |
|
378 | + $origin = ($_SERVER['REQUEST_METHOD']=='POST') ? 'Notify' : 'Order'; |
|
379 | 379 | |
380 | 380 | include_once('notifyController.php'); |
381 | 381 | $notify = new WcPagantisNotify(); |
@@ -414,10 +414,10 @@ discard block |
||
414 | 414 | */ |
415 | 415 | public function pagantisCompleteStatus($status, $order_id, $order) |
416 | 416 | { |
417 | - if ($order->get_payment_method() == WcPagantisGateway::METHOD_ID) { |
|
418 | - if ($order->get_status() == 'failed') { |
|
417 | + if ($order->get_payment_method()==WcPagantisGateway::METHOD_ID) { |
|
418 | + if ($order->get_status()=='failed') { |
|
419 | 419 | $status = 'processing'; |
420 | - } elseif ($order->get_status() == 'pending' && $status=='completed') { |
|
420 | + } elseif ($order->get_status()=='pending' && $status=='completed') { |
|
421 | 421 | $status = 'processing'; |
422 | 422 | } |
423 | 423 | } |
@@ -441,7 +441,7 @@ discard block |
||
441 | 441 | $allowedCountries = unserialize($this->extraConfig['PAGANTIS_ALLOWED_COUNTRIES']); |
442 | 442 | $allowedCountry = (in_array(strtolower($locale), $allowedCountries)); |
443 | 443 | if ($this->enabled==='yes' && $this->pagantis_public_key!='' && $this->pagantis_private_key!='' && |
444 | - (int)$this->get_order_total()>$this->extraConfig['PAGANTIS_DISPLAY_MIN_AMOUNT'] && $allowedCountry) { |
|
444 | + (int) $this->get_order_total() > $this->extraConfig['PAGANTIS_DISPLAY_MIN_AMOUNT'] && $allowedCountry) { |
|
445 | 445 | return true; |
446 | 446 | } |
447 | 447 | |
@@ -469,7 +469,7 @@ discard block |
||
469 | 469 | |
470 | 470 | $redirectUrl = $order->get_checkout_payment_url(true); //pagantisReceiptPage function |
471 | 471 | if (strpos($redirectUrl, 'order-pay=')===false) { |
472 | - $redirectUrl.="&order-pay=".$order_id; |
|
472 | + $redirectUrl .= "&order-pay=".$order_id; |
|
473 | 473 | } |
474 | 474 | |
475 | 475 | return array( |
@@ -478,7 +478,7 @@ discard block |
||
478 | 478 | ); |
479 | 479 | |
480 | 480 | } catch (Exception $e) { |
481 | - wc_add_notice(__('Payment error ', 'pagantis') . $e->getMessage(), 'error'); |
|
481 | + wc_add_notice(__('Payment error ', 'pagantis').$e->getMessage(), 'error'); |
|
482 | 482 | return array(); |
483 | 483 | } |
484 | 484 | } |
@@ -542,7 +542,7 @@ discard block |
||
542 | 542 | private function generateUrl($url) |
543 | 543 | { |
544 | 544 | $parsed_url = parse_url($url); |
545 | - if ($parsed_url !== false) { |
|
545 | + if ($parsed_url!==false) { |
|
546 | 546 | $parsed_url['query'] = !isset($parsed_url['query']) ? '' : $parsed_url['query']; |
547 | 547 | parse_str($parsed_url['query'], $arrayParams); |
548 | 548 | foreach ($arrayParams as $keyParam => $valueParam) { |
@@ -590,11 +590,10 @@ discard block |
||
590 | 590 | private function getKeysUrl($order, $url) |
591 | 591 | { |
592 | 592 | $defaultFields = (get_class($order)=='WC_Order') ? |
593 | - array('order-received'=>$order->get_id(), 'key'=>$order->get_order_key()) : |
|
594 | - array(); |
|
593 | + array('order-received'=>$order->get_id(), 'key'=>$order->get_order_key()) : array(); |
|
595 | 594 | |
596 | 595 | $parsedUrl = parse_url($url); |
597 | - if ($parsedUrl !== false) { |
|
596 | + if ($parsedUrl!==false) { |
|
598 | 597 | //Replace parameters from url |
599 | 598 | $parsedUrl['query'] = $this->getKeysParametersUrl($parsedUrl['query'], $defaultFields); |
600 | 599 | |
@@ -639,7 +638,7 @@ discard block |
||
639 | 638 | foreach ($arrayParams as $keyParam => $valueParam) { |
640 | 639 | preg_match('#\{{.*?}\}#', $valueParam, $match); |
641 | 640 | if (count($match)) { |
642 | - $key = str_replace(array('{{','}}'), array('',''), $match[0]); |
|
641 | + $key = str_replace(array('{{', '}}'), array('', ''), $match[0]); |
|
643 | 642 | $arrayParams[$keyParam] = $defaultFields[$key]; |
644 | 643 | } |
645 | 644 | } |
@@ -654,13 +653,13 @@ discard block |
||
654 | 653 | */ |
655 | 654 | private function unparseUrl($parsed_url) |
656 | 655 | { |
657 | - $scheme = isset($parsed_url['scheme']) ? $parsed_url['scheme'] . '://' : ''; |
|
656 | + $scheme = isset($parsed_url['scheme']) ? $parsed_url['scheme'].'://' : ''; |
|
658 | 657 | $host = isset($parsed_url['host']) ? $parsed_url['host'] : ''; |
659 | - $port = isset($parsed_url['port']) ? ':' . $parsed_url['port'] : ''; |
|
660 | - $query = isset($parsed_url['query']) ? '?' . $parsed_url['query'] : ''; |
|
661 | - $fragment = isset($parsed_url['fragment']) ? '#' . $parsed_url['fragment'] : ''; |
|
658 | + $port = isset($parsed_url['port']) ? ':'.$parsed_url['port'] : ''; |
|
659 | + $query = isset($parsed_url['query']) ? '?'.$parsed_url['query'] : ''; |
|
660 | + $fragment = isset($parsed_url['fragment']) ? '#'.$parsed_url['fragment'] : ''; |
|
662 | 661 | $path = $parsed_url['path']; |
663 | - return $scheme . $host . $port . $path . $query . $fragment; |
|
662 | + return $scheme.$host.$port.$path.$query.$fragment; |
|
664 | 663 | } |
665 | 664 | |
666 | 665 | /** |
@@ -682,20 +681,20 @@ discard block |
||
682 | 681 | $is_guest = "false"; |
683 | 682 | $sign_up = substr($current_user->user_registered, 0, 10); |
684 | 683 | $customer_orders = get_posts(array( |
685 | - 'numberposts' => - 1, |
|
684 | + 'numberposts' => -1, |
|
686 | 685 | 'meta_key' => '_customer_user', |
687 | 686 | 'meta_value' => $current_user->ID, |
688 | - 'post_type' => array( 'shop_order' ), |
|
689 | - 'post_status' => array( 'wc-completed', 'wc-processing', 'wc-refunded' ), |
|
687 | + 'post_type' => array('shop_order'), |
|
688 | + 'post_status' => array('wc-completed', 'wc-processing', 'wc-refunded'), |
|
690 | 689 | )); |
691 | 690 | } else { |
692 | 691 | $is_guest = "true"; |
693 | 692 | $customer_orders = get_posts(array( |
694 | - 'numberposts' => - 1, |
|
693 | + 'numberposts' => -1, |
|
695 | 694 | 'meta_key' => '_billing_email', |
696 | 695 | 'meta_value' => $billingEmail, |
697 | - 'post_type' => array( 'shop_order' ), |
|
698 | - 'post_status' => array( 'wc-completed', 'wc-processing', 'wc-refunded'), |
|
696 | + 'post_type' => array('shop_order'), |
|
697 | + 'post_status' => array('wc-completed', 'wc-processing', 'wc-refunded'), |
|
699 | 698 | )); |
700 | 699 | foreach ($customer_orders as $customer_order) { |
701 | 700 | if (trim($sign_up)=='' || |
@@ -724,7 +723,7 @@ discard block |
||
724 | 723 | //Check if id exists |
725 | 724 | $resultsSelect = $wpdb->get_results("select * from $tableName where id='$orderId'"); |
726 | 725 | $countResults = count($resultsSelect); |
727 | - if ($countResults == 0) { |
|
726 | + if ($countResults==0) { |
|
728 | 727 | $wpdb->insert( |
729 | 728 | $tableName, |
730 | 729 | array('id' => $orderId, 'order_id' => $pagantisOrderId), |
@@ -749,7 +748,7 @@ discard block |
||
749 | 748 | global $wpdb; |
750 | 749 | $tableName = $wpdb->prefix.self::ORDERS_TABLE; |
751 | 750 | |
752 | - if ($wpdb->get_var("SHOW TABLES LIKE '$tableName'") != $tableName) { |
|
751 | + if ($wpdb->get_var("SHOW TABLES LIKE '$tableName'")!=$tableName) { |
|
753 | 752 | $charset_collate = $wpdb->get_charset_collate(); |
754 | 753 | $sql = "CREATE TABLE $tableName ( id int, order_id varchar(50), wc_order_id varchar(50), |
755 | 754 | UNIQUE KEY id (id)) $charset_collate"; |
@@ -782,9 +781,9 @@ discard block |
||
782 | 781 | */ |
783 | 782 | private function getNationalId($order) |
784 | 783 | { |
785 | - foreach ((array)$order->get_meta_data() as $mdObject) { |
|
784 | + foreach ((array) $order->get_meta_data() as $mdObject) { |
|
786 | 785 | $data = $mdObject->get_data(); |
787 | - if ($data['key'] == 'vat_number') { |
|
786 | + if ($data['key']=='vat_number') { |
|
788 | 787 | return $data['value']; |
789 | 788 | } |
790 | 789 | } |
@@ -799,9 +798,9 @@ discard block |
||
799 | 798 | */ |
800 | 799 | private function getTaxId($order) |
801 | 800 | { |
802 | - foreach ((array)$order->get_meta_data() as $mdObject) { |
|
801 | + foreach ((array) $order->get_meta_data() as $mdObject) { |
|
803 | 802 | $data = $mdObject->get_data(); |
804 | - if ($data['key'] == 'billing_cfpiva') { |
|
803 | + if ($data['key']=='billing_cfpiva') { |
|
805 | 804 | return $data['value']; |
806 | 805 | } |
807 | 806 | } |
@@ -831,7 +830,7 @@ discard block |
||
831 | 830 | { |
832 | 831 | global $wpdb; |
833 | 832 | $tableName = $wpdb->prefix.self::LOGS_TABLE; |
834 | - if ($wpdb->get_var("SHOW TABLES LIKE '$tableName'") != $tableName) { |
|
833 | + if ($wpdb->get_var("SHOW TABLES LIKE '$tableName'")!=$tableName) { |
|
835 | 834 | $charset_collate = $wpdb->get_charset_collate(); |
836 | 835 | $sql = "CREATE TABLE $tableName ( id int NOT NULL AUTO_INCREMENT, log text NOT NULL, |
837 | 836 | createdAt timestamp DEFAULT CURRENT_TIMESTAMP, UNIQUE KEY id (id)) $charset_collate"; |
@@ -850,7 +849,7 @@ discard block |
||
850 | 849 | { |
851 | 850 | $metaProduct = get_post_meta($product_id); |
852 | 851 | return (array_key_exists('custom_product_pagantis_promoted', $metaProduct) && |
853 | - $metaProduct['custom_product_pagantis_promoted']['0'] === 'yes') ? 'true' : 'false'; |
|
852 | + $metaProduct['custom_product_pagantis_promoted']['0']==='yes') ? 'true' : 'false'; |
|
854 | 853 | } |
855 | 854 | |
856 | 855 | /** |
@@ -863,8 +862,8 @@ discard block |
||
863 | 862 | $promotedAmount = 0; |
864 | 863 | foreach ($items as $key => $item) { |
865 | 864 | $promotedProduct = $this->isPromoted($item['product_id']); |
866 | - if ($promotedProduct == 'true') { |
|
867 | - $promotedAmount+=$item['line_total'] + $item['line_tax']; |
|
865 | + if ($promotedProduct=='true') { |
|
866 | + $promotedAmount += $item['line_total'] + $item['line_tax']; |
|
868 | 867 | } |
869 | 868 | } |
870 | 869 |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <script> |
2 | 2 | function findPriceSelector() |
3 | 3 | { |
4 | - var priceSelectors = <?php echo json_encode($priceSelector);?>; |
|
4 | + var priceSelectors = <?php echo json_encode($priceSelector); ?>; |
|
5 | 5 | return priceSelectors.find(function(candidateSelector) { |
6 | 6 | var priceDOM = document.querySelector(candidateSelector); |
7 | 7 | return (priceDOM != null ); |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | function findPositionSelector() |
13 | 13 | { |
14 | - var positionSelector = '<?php echo $positionSelector;?>'; |
|
14 | + var positionSelector = '<?php echo $positionSelector; ?>'; |
|
15 | 15 | if (positionSelector === 'default') { |
16 | 16 | positionSelector = '.pagantisSimulator'; |
17 | 17 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | |
22 | 22 | function findQuantitySelector() |
23 | 23 | { |
24 | - var quantitySelectors = <?php echo json_encode($quantitySelector);?>; |
|
24 | + var quantitySelectors = <?php echo json_encode($quantitySelector); ?>; |
|
25 | 25 | return quantitySelectors.find(function(candidateSelector) { |
26 | 26 | var priceDOM = document.querySelector(candidateSelector); |
27 | 27 | return (priceDOM != null ); |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | function prependSeparator() |
66 | 66 | { |
67 | 67 | var node = document.querySelector(findPositionSelector()); |
68 | - var textnode = document.createTextNode(<?php echo json_encode($separator);?>); |
|
68 | + var textnode = document.createTextNode(<?php echo json_encode($separator); ?>); |
|
69 | 69 | var spannode = document.createElement("span"); |
70 | 70 | spannode.style.cssText = 'margin-right:5px'; |
71 | 71 | spannode.appendChild(textnode); |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | |
91 | 91 | var positionSelector = findPositionSelector(); |
92 | 92 | var priceSelector = findPriceSelector(); |
93 | - var promotedProduct = '<?php echo $promoted;?>'; |
|
93 | + var promotedProduct = '<?php echo $promoted; ?>'; |
|
94 | 94 | var quantitySelector = findQuantitySelector(); |
95 | 95 | |
96 | 96 | simulator_options = { |
@@ -102,12 +102,12 @@ discard block |
||
102 | 102 | country: country, |
103 | 103 | itemAmountSelector: priceSelector, |
104 | 104 | amountParserConfig : { |
105 | - thousandSeparator: '<?php echo $thousandSeparator;?>', |
|
106 | - decimalSeparator: '<?php echo $decimalSeparator;?>' |
|
105 | + thousandSeparator: '<?php echo $thousandSeparator; ?>', |
|
106 | + decimalSeparator: '<?php echo $decimalSeparator; ?>' |
|
107 | 107 | }, |
108 | - numInstalments : '<?php echo $pagantisQuotesStart;?>', |
|
109 | - skin : <?php echo $pagantisSimulatorSkin;?>, |
|
110 | - position: <?php echo $pagantisSimulatorPosition;?> |
|
108 | + numInstalments : '<?php echo $pagantisQuotesStart; ?>', |
|
109 | + skin : <?php echo $pagantisSimulatorSkin; ?>, |
|
110 | + position: <?php echo $pagantisSimulatorPosition; ?> |
|
111 | 111 | }; |
112 | 112 | |
113 | 113 | if (promotedProduct == 'true') { |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | } |
133 | 133 | </style> |
134 | 134 | <?php |
135 | -if ($promoted == 'true') { |
|
135 | +if ($promoted=='true') { |
|
136 | 136 | echo $promotedMessage; |
137 | 137 | } |
138 | 138 | ?> |
@@ -33,24 +33,24 @@ discard block |
||
33 | 33 | const ORDERS_TABLE = 'posts'; |
34 | 34 | |
35 | 35 | public $defaultConfigs = array( |
36 | - 'PAGANTIS_TITLE'=>'Pago en cuotas', |
|
37 | - 'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'sdk.simulator.types.SELECTABLE_TEXT_CUSTOM', |
|
38 | - 'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'sdk.simulator.skins.BLUE', |
|
39 | - 'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons', |
|
40 | - 'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3, |
|
41 | - 'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12, |
|
42 | - 'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default', |
|
43 | - 'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'sdk.simulator.positions.INNER', |
|
44 | - 'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'a:3:{i:0;s:48:"div.summary *:not(del)>.woocommerce-Price-amount";i:1;s:54:"div.entry-summary *:not(del)>.woocommerce-Price-amount";i:2;s:36:"*:not(del)>.woocommerce-Price-amount";}', |
|
45 | - 'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'a:2:{i:0;s:22:"div.quantity input.qty";i:1;s:18:"div.quantity>input";}', |
|
46 | - 'PAGANTIS_FORM_DISPLAY_TYPE'=>0, |
|
47 | - 'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1, |
|
48 | - 'PAGANTIS_URL_OK'=>'', |
|
49 | - 'PAGANTIS_URL_KO'=>'', |
|
50 | - 'PAGANTIS_ALLOWED_COUNTRIES' => 'a:3:{i:0;s:2:"es";i:1;s:2:"it";i:2;s:2:"fr";}', |
|
51 | - 'PAGANTIS_PROMOTION_EXTRA' => '<p>Finance this product <span class="pg-no-interest">without interest!</span></p>', |
|
52 | - 'PAGANTIS_SIMULATOR_THOUSANDS_SEPARATOR' => '.', |
|
53 | - 'PAGANTIS_SIMULATOR_DECIMAL_SEPARATOR' => ',' |
|
36 | + 'PAGANTIS_TITLE'=>'Pago en cuotas', |
|
37 | + 'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'sdk.simulator.types.SELECTABLE_TEXT_CUSTOM', |
|
38 | + 'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'sdk.simulator.skins.BLUE', |
|
39 | + 'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons', |
|
40 | + 'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3, |
|
41 | + 'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12, |
|
42 | + 'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default', |
|
43 | + 'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'sdk.simulator.positions.INNER', |
|
44 | + 'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'a:3:{i:0;s:48:"div.summary *:not(del)>.woocommerce-Price-amount";i:1;s:54:"div.entry-summary *:not(del)>.woocommerce-Price-amount";i:2;s:36:"*:not(del)>.woocommerce-Price-amount";}', |
|
45 | + 'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'a:2:{i:0;s:22:"div.quantity input.qty";i:1;s:18:"div.quantity>input";}', |
|
46 | + 'PAGANTIS_FORM_DISPLAY_TYPE'=>0, |
|
47 | + 'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1, |
|
48 | + 'PAGANTIS_URL_OK'=>'', |
|
49 | + 'PAGANTIS_URL_KO'=>'', |
|
50 | + 'PAGANTIS_ALLOWED_COUNTRIES' => 'a:3:{i:0;s:2:"es";i:1;s:2:"it";i:2;s:2:"fr";}', |
|
51 | + 'PAGANTIS_PROMOTION_EXTRA' => '<p>Finance this product <span class="pg-no-interest">without interest!</span></p>', |
|
52 | + 'PAGANTIS_SIMULATOR_THOUSANDS_SEPARATOR' => '.', |
|
53 | + 'PAGANTIS_SIMULATOR_DECIMAL_SEPARATOR' => ',' |
|
54 | 54 | ); |
55 | 55 | |
56 | 56 | /** @var Array $extraConfig */ |
@@ -375,7 +375,7 @@ discard block |
||
375 | 375 | if ($file == plugin_basename(__FILE__)) { |
376 | 376 | $links[] = '<a href="'.WcPagantis::GIT_HUB_URL.'" target="_blank">'.__('Documentation', 'pagantis').'</a>'; |
377 | 377 | $links[] = '<a href="'.WcPagantis::PAGANTIS_DOC_URL.'" target="_blank">'. |
378 | - __('API documentation', 'pagantis').'</a>'; |
|
378 | + __('API documentation', 'pagantis').'</a>'; |
|
379 | 379 | $links[] = '<a href="'.WcPagantis::SUPPORT_EML.'">'.__('Support', 'pagantis').'</a>'; |
380 | 380 | |
381 | 381 | return $links; |