Changeset 1753148
- Timestamp:
- 10/26/2017 12:45:49 PM (8 years ago)
- Location:
- payapi-online-secure-payment
- Files:
-
- 20 added
- 10 deleted
- 13 edited
- 4 copied
-
tags/1.0.7 (copied) (copied from payapi-online-secure-payment/trunk)
-
tags/1.0.7/assets/icon-128x128.png (deleted)
-
tags/1.0.7/assets/screenshot-2.jpg (added)
-
tags/1.0.7/assets/screenshot-2.png (deleted)
-
tags/1.0.7/assets/screenshot-3.jpg (modified) (previous)
-
tags/1.0.7/assets/screenshot-4.jpg (added)
-
tags/1.0.7/assets/screenshot-4.png (deleted)
-
tags/1.0.7/assets/screenshot-5.jpg (added)
-
tags/1.0.7/assets/screenshot-6.jpg (added)
-
tags/1.0.7/assets/screenshot-7.png (added)
-
tags/1.0.7/includes/check-partialpayments.php (modified) (1 diff)
-
tags/1.0.7/payapiGateway.php (modified) (4 diffs)
-
tags/1.0.7/readme.txt (modified) (3 diffs)
-
tags/1.0.7/screenshot-2.jpg (added)
-
tags/1.0.7/screenshot-2.png (deleted)
-
tags/1.0.7/screenshot-3.jpg (modified) (previous)
-
tags/1.0.7/screenshot-4.jpg (added)
-
tags/1.0.7/screenshot-4.png (deleted)
-
tags/1.0.7/screenshot-5.jpg (added)
-
tags/1.0.7/screenshot-6.jpg (added)
-
tags/1.0.7/screenshot-7.png (added)
-
tags/1.0.7/vendor/autoload.php (copied) (copied from payapi-online-secure-payment/trunk/vendor/autoload.php) (1 diff)
-
tags/1.0.7/vendor/composer/autoload_real.php (copied) (copied from payapi-online-secure-payment/trunk/vendor/composer/autoload_real.php) (3 diffs)
-
tags/1.0.7/vendor/composer/autoload_static.php (copied) (copied from payapi-online-secure-payment/trunk/vendor/composer/autoload_static.php) (2 diffs)
-
trunk/assets/icon-128x128.png (deleted)
-
trunk/assets/screenshot-2.jpg (added)
-
trunk/assets/screenshot-2.png (deleted)
-
trunk/assets/screenshot-3.jpg (modified) (previous)
-
trunk/assets/screenshot-4.jpg (added)
-
trunk/assets/screenshot-4.png (deleted)
-
trunk/assets/screenshot-5.jpg (added)
-
trunk/assets/screenshot-6.jpg (added)
-
trunk/assets/screenshot-7.png (added)
-
trunk/includes/check-partialpayments.php (modified) (1 diff)
-
trunk/payapiGateway.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/screenshot-2.jpg (added)
-
trunk/screenshot-2.png (deleted)
-
trunk/screenshot-3.jpg (modified) (previous)
-
trunk/screenshot-4.jpg (added)
-
trunk/screenshot-4.png (deleted)
-
trunk/screenshot-5.jpg (added)
-
trunk/screenshot-6.jpg (added)
-
trunk/screenshot-7.png (added)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (3 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
payapi-online-secure-payment/tags/1.0.7/includes/check-partialpayments.php
r1753018 r1753148 7 7 8 8 function checkPartialPayments($request) { 9 $productId = $request['productId'];10 $variationId = $request['variationId'];11 $qty = $request['qty'];9 $productId = isset($request['productId'])?$request['productId']:false; 10 $variationId = isset($request['variationId']) ? $request['variationId'] : false; 11 $qty = isset($request['qty'])?$request['qty']:false; 12 12 13 13 if ($productId && $qty) { -
payapi-online-secure-payment/tags/1.0.7/payapiGateway.php
r1752999 r1753148 4 4 * Plugin URI: https://wordpress.org/plugins/payapi-online-secure-payment/ 5 5 * Description: PayApi Online Secure Payment includes a new payment gateway for the checkout process through the PayApi Secure-Form 6 * Version: 1.0. 66 * Version: 1.0.7 7 7 * Author: PayApi 8 8 * Author URI: https://payapi.io … … 16 16 * License URI: http://www.gnu.org/licenses/gpl-3.0.html 17 17 */ 18 ?> 19 <?php 18 20 19 21 require_once __DIR__."/vendor/autoload.php"; … … 107 109 $partialPay = get_partial_payment_from_cart(); 108 110 if($partialPay && $partialPay['code'] == 200) { 109 $strPartialP = str_replace(" ##", ($partialPay['data']['pricePerMonthInCents'] / 100.0) . ' ' . $partialPay['data']['currency'],__('Starting from ##/month','payapi-gateway'));111 $strPartialP = str_replace("1.0.7", ($partialPay['data']['pricePerMonthInCents'] / 100.0) . ' ' . $partialPay['data']['currency'],__('Starting from 1.0.7/month','payapi-gateway')); 110 112 111 113 echo '<a rel="nofollow" style="margin-bottom:10px" class="cart-instantbuy-button payapi-partial checkout button">' . $strPartialP . '</a>'; … … 335 337 $partialPay = get_partial_payment_from_cart(); 336 338 if($partialPay && $partialPay['code'] == 200){ 337 $strPartialInitial = str_replace(" ##", ($partialPay['data']['pricePerMonthInCents'] / 100.0) . ' ' . $partialPay['data']['currency'],__('Starting from ##/month','payapi-gateway'));339 $strPartialInitial = str_replace("1.0.7", ($partialPay['data']['pricePerMonthInCents'] / 100.0) . ' ' . $partialPay['data']['currency'],__('Starting from 1.0.7/month','payapi-gateway')); 338 340 echo '<button style="margin-top:10px;" type="button" class="alt button" id="payapi-checkout-partial"><span>'.$strPartialInitial.'</span></button>'; 339 341 } -
payapi-online-secure-payment/tags/1.0.7/readme.txt
r1752999 r1753148 4 4 Requires at least: 3.5 5 5 Tested up to: 4.8 6 Stable tag: 1.0. 66 Stable tag: 1.0.7 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html 9 9 10 10 The official PayApi extension for WooCommerce. Adds new payment gateway for the checkout process and new UI components for Instant Buy and social sharing. 11 11 ** PCI DSS level 1 certified secure payments platform ** 12 12 == Description == 13 13 The official PayApi extension for WooCommerce. PayApi is a modern online payments platform provider providing merchants a secure and scalable payments routing platform for online and mobile consumers. PAYAPI SERVICE CAN BE USED FOR FREE. The smart payments routing is done between several payment gateways depending on multiple factors and with pre-processing through advanced anti-fraud system. The PayApi also integrates with patent-pending gesture based social sharing functionality that enables a unique social shopping experience for the consumers. The PayApi is a limited liability companyin Finland, Europe. … … 28 28 * Advanced anti-fraud operations for every payment: minimize your chargeback costs 29 29 * Real-time reporting of payments with the PayApi backoffice 30 * PCI DSS compliant secure payments platform 30 * PCI DSS level 1 certified secure payments platform 31 * Partial Payments, boost your sales! 31 32 * Compatible with most of Woocommerce templates. Tested with most used templates as Flatsome, Shopkeeper, and some others free templates.w 32 33 … … 77 78 2. Secure Form page 2 78 79 3. Social sharing 79 4. PayApi settings page 80 4. PayApi store 81 5. PayApi image 82 6. PayApi shopping 83 7. PayApi webshop 80 84 81 85 == Changelog == 86 = 1.0.7 = 87 * Modify the plugin page 88 82 89 = 1.0.6 = 83 90 * Add composer libraries in the plugin -
payapi-online-secure-payment/tags/1.0.7/vendor/autoload.php
r1753035 r1753148 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit 22e65a22eace2a3d40d226491053ccb6::getLoader();7 return ComposerAutoloaderInit8da6c238ab04c08980ead08a0072b59e::getLoader(); -
payapi-online-secure-payment/tags/1.0.7/vendor/composer/autoload_real.php
r1753035 r1753148 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 22e65a22eace2a3d40d226491053ccb65 class ComposerAutoloaderInit8da6c238ab04c08980ead08a0072b59e 6 6 { 7 7 private static $loader; … … 20 20 } 21 21 22 spl_autoload_register(array('ComposerAutoloaderInit 22e65a22eace2a3d40d226491053ccb6', 'loadClassLoader'), true, true);22 spl_autoload_register(array('ComposerAutoloaderInit8da6c238ab04c08980ead08a0072b59e', 'loadClassLoader'), true, true); 23 23 self::$loader = $loader = new \Composer\Autoload\ClassLoader(); 24 spl_autoload_unregister(array('ComposerAutoloaderInit 22e65a22eace2a3d40d226491053ccb6', 'loadClassLoader'));24 spl_autoload_unregister(array('ComposerAutoloaderInit8da6c238ab04c08980ead08a0072b59e', 'loadClassLoader')); 25 25 26 26 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 28 28 require_once __DIR__ . '/autoload_static.php'; 29 29 30 call_user_func(\Composer\Autoload\ComposerStaticInit 22e65a22eace2a3d40d226491053ccb6::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInit8da6c238ab04c08980ead08a0072b59e::getInitializer($loader)); 31 31 } else { 32 32 $map = require __DIR__ . '/autoload_namespaces.php'; -
payapi-online-secure-payment/tags/1.0.7/vendor/composer/autoload_static.php
r1753035 r1753148 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 22e65a22eace2a3d40d226491053ccb67 class ComposerStaticInit8da6c238ab04c08980ead08a0072b59e 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 32 32 { 33 33 return \Closure::bind(function () use ($loader) { 34 $loader->prefixLengthsPsr4 = ComposerStaticInit 22e65a22eace2a3d40d226491053ccb6::$prefixLengthsPsr4;35 $loader->prefixDirsPsr4 = ComposerStaticInit 22e65a22eace2a3d40d226491053ccb6::$prefixDirsPsr4;34 $loader->prefixLengthsPsr4 = ComposerStaticInit8da6c238ab04c08980ead08a0072b59e::$prefixLengthsPsr4; 35 $loader->prefixDirsPsr4 = ComposerStaticInit8da6c238ab04c08980ead08a0072b59e::$prefixDirsPsr4; 36 36 37 37 }, null, ClassLoader::class); -
payapi-online-secure-payment/trunk/includes/check-partialpayments.php
r1753018 r1753148 7 7 8 8 function checkPartialPayments($request) { 9 $productId = $request['productId'];10 $variationId = $request['variationId'];11 $qty = $request['qty'];9 $productId = isset($request['productId'])?$request['productId']:false; 10 $variationId = isset($request['variationId']) ? $request['variationId'] : false; 11 $qty = isset($request['qty'])?$request['qty']:false; 12 12 13 13 if ($productId && $qty) { -
payapi-online-secure-payment/trunk/payapiGateway.php
r1752999 r1753148 4 4 * Plugin URI: https://wordpress.org/plugins/payapi-online-secure-payment/ 5 5 * Description: PayApi Online Secure Payment includes a new payment gateway for the checkout process through the PayApi Secure-Form 6 * Version: 1.0. 66 * Version: 1.0.7 7 7 * Author: PayApi 8 8 * Author URI: https://payapi.io … … 16 16 * License URI: http://www.gnu.org/licenses/gpl-3.0.html 17 17 */ 18 ?> 19 <?php 18 20 19 21 require_once __DIR__."/vendor/autoload.php"; … … 107 109 $partialPay = get_partial_payment_from_cart(); 108 110 if($partialPay && $partialPay['code'] == 200) { 109 $strPartialP = str_replace(" ##", ($partialPay['data']['pricePerMonthInCents'] / 100.0) . ' ' . $partialPay['data']['currency'],__('Starting from ##/month','payapi-gateway'));111 $strPartialP = str_replace("1.0.7", ($partialPay['data']['pricePerMonthInCents'] / 100.0) . ' ' . $partialPay['data']['currency'],__('Starting from 1.0.7/month','payapi-gateway')); 110 112 111 113 echo '<a rel="nofollow" style="margin-bottom:10px" class="cart-instantbuy-button payapi-partial checkout button">' . $strPartialP . '</a>'; … … 335 337 $partialPay = get_partial_payment_from_cart(); 336 338 if($partialPay && $partialPay['code'] == 200){ 337 $strPartialInitial = str_replace(" ##", ($partialPay['data']['pricePerMonthInCents'] / 100.0) . ' ' . $partialPay['data']['currency'],__('Starting from ##/month','payapi-gateway'));339 $strPartialInitial = str_replace("1.0.7", ($partialPay['data']['pricePerMonthInCents'] / 100.0) . ' ' . $partialPay['data']['currency'],__('Starting from 1.0.7/month','payapi-gateway')); 338 340 echo '<button style="margin-top:10px;" type="button" class="alt button" id="payapi-checkout-partial"><span>'.$strPartialInitial.'</span></button>'; 339 341 } -
payapi-online-secure-payment/trunk/readme.txt
r1752999 r1753148 4 4 Requires at least: 3.5 5 5 Tested up to: 4.8 6 Stable tag: 1.0. 66 Stable tag: 1.0.7 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html 9 9 10 10 The official PayApi extension for WooCommerce. Adds new payment gateway for the checkout process and new UI components for Instant Buy and social sharing. 11 11 ** PCI DSS level 1 certified secure payments platform ** 12 12 == Description == 13 13 The official PayApi extension for WooCommerce. PayApi is a modern online payments platform provider providing merchants a secure and scalable payments routing platform for online and mobile consumers. PAYAPI SERVICE CAN BE USED FOR FREE. The smart payments routing is done between several payment gateways depending on multiple factors and with pre-processing through advanced anti-fraud system. The PayApi also integrates with patent-pending gesture based social sharing functionality that enables a unique social shopping experience for the consumers. The PayApi is a limited liability companyin Finland, Europe. … … 28 28 * Advanced anti-fraud operations for every payment: minimize your chargeback costs 29 29 * Real-time reporting of payments with the PayApi backoffice 30 * PCI DSS compliant secure payments platform 30 * PCI DSS level 1 certified secure payments platform 31 * Partial Payments, boost your sales! 31 32 * Compatible with most of Woocommerce templates. Tested with most used templates as Flatsome, Shopkeeper, and some others free templates.w 32 33 … … 77 78 2. Secure Form page 2 78 79 3. Social sharing 79 4. PayApi settings page 80 4. PayApi store 81 5. PayApi image 82 6. PayApi shopping 83 7. PayApi webshop 80 84 81 85 == Changelog == 86 = 1.0.7 = 87 * Modify the plugin page 88 82 89 = 1.0.6 = 83 90 * Add composer libraries in the plugin -
payapi-online-secure-payment/trunk/vendor/autoload.php
r1753035 r1753148 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit 22e65a22eace2a3d40d226491053ccb6::getLoader();7 return ComposerAutoloaderInit8da6c238ab04c08980ead08a0072b59e::getLoader(); -
payapi-online-secure-payment/trunk/vendor/composer/autoload_real.php
r1753035 r1753148 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 22e65a22eace2a3d40d226491053ccb65 class ComposerAutoloaderInit8da6c238ab04c08980ead08a0072b59e 6 6 { 7 7 private static $loader; … … 20 20 } 21 21 22 spl_autoload_register(array('ComposerAutoloaderInit 22e65a22eace2a3d40d226491053ccb6', 'loadClassLoader'), true, true);22 spl_autoload_register(array('ComposerAutoloaderInit8da6c238ab04c08980ead08a0072b59e', 'loadClassLoader'), true, true); 23 23 self::$loader = $loader = new \Composer\Autoload\ClassLoader(); 24 spl_autoload_unregister(array('ComposerAutoloaderInit 22e65a22eace2a3d40d226491053ccb6', 'loadClassLoader'));24 spl_autoload_unregister(array('ComposerAutoloaderInit8da6c238ab04c08980ead08a0072b59e', 'loadClassLoader')); 25 25 26 26 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 28 28 require_once __DIR__ . '/autoload_static.php'; 29 29 30 call_user_func(\Composer\Autoload\ComposerStaticInit 22e65a22eace2a3d40d226491053ccb6::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInit8da6c238ab04c08980ead08a0072b59e::getInitializer($loader)); 31 31 } else { 32 32 $map = require __DIR__ . '/autoload_namespaces.php'; -
payapi-online-secure-payment/trunk/vendor/composer/autoload_static.php
r1753035 r1753148 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 22e65a22eace2a3d40d226491053ccb67 class ComposerStaticInit8da6c238ab04c08980ead08a0072b59e 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 32 32 { 33 33 return \Closure::bind(function () use ($loader) { 34 $loader->prefixLengthsPsr4 = ComposerStaticInit 22e65a22eace2a3d40d226491053ccb6::$prefixLengthsPsr4;35 $loader->prefixDirsPsr4 = ComposerStaticInit 22e65a22eace2a3d40d226491053ccb6::$prefixDirsPsr4;34 $loader->prefixLengthsPsr4 = ComposerStaticInit8da6c238ab04c08980ead08a0072b59e::$prefixLengthsPsr4; 35 $loader->prefixDirsPsr4 = ComposerStaticInit8da6c238ab04c08980ead08a0072b59e::$prefixDirsPsr4; 36 36 37 37 }, null, ClassLoader::class);
Note: See TracChangeset
for help on using the changeset viewer.