Plugin Directory

Changeset 1753148


Ignore:
Timestamp:
10/26/2017 12:45:49 PM (8 years ago)
Author:
payapi
Message:

Release version 1.0.7

Location:
payapi-online-secure-payment
Files:
20 added
10 deleted
13 edited
4 copied

Legend:

Unmodified
Added
Removed
  • payapi-online-secure-payment/tags/1.0.7/includes/check-partialpayments.php

    r1753018 r1753148  
    77
    88function 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;
    1212
    1313    if ($productId && $qty) {
  • payapi-online-secure-payment/tags/1.0.7/payapiGateway.php

    r1752999 r1753148  
    44 * Plugin URI: https://wordpress.org/plugins/payapi-online-secure-payment/
    55 * Description: PayApi Online Secure Payment includes a new payment gateway for the checkout process through the PayApi Secure-Form
    6  * Version: 1.0.6
     6 * Version: 1.0.7
    77 * Author: PayApi
    88 * Author URI: https://payapi.io
     
    1616 * License URI: http://www.gnu.org/licenses/gpl-3.0.html
    1717 */
     18?>
     19<?php
    1820
    1921require_once __DIR__."/vendor/autoload.php";
     
    107109        $partialPay = get_partial_payment_from_cart();
    108110        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'));
    110112           
    111113            echo '<a rel="nofollow" style="margin-bottom:10px" class="cart-instantbuy-button payapi-partial checkout button">' . $strPartialP . '</a>';
     
    335337    $partialPay = get_partial_payment_from_cart();
    336338    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'));
    338340        echo '<button style="margin-top:10px;" type="button" class="alt button" id="payapi-checkout-partial"><span>'.$strPartialInitial.'</span></button>';       
    339341    }
  • payapi-online-secure-payment/tags/1.0.7/readme.txt

    r1752999 r1753148  
    44Requires at least: 3.5
    55Tested up to: 4.8
    6 Stable tag: 1.0.6
     6Stable tag: 1.0.7
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
    99
    1010The 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 **
    1212== Description ==
    1313The 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.
     
    2828* Advanced anti-fraud operations for every payment: minimize your chargeback costs
    2929* 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!
    3132* Compatible with most of Woocommerce templates. Tested with most used templates as Flatsome, Shopkeeper, and some others free templates.w
    3233
     
    77782. Secure Form page 2
    78793. Social sharing
    79 4. PayApi settings page
     804. PayApi store
     815. PayApi image 
     826. PayApi shopping
     837. PayApi webshop
    8084
    8185== Changelog ==
     86= 1.0.7 =
     87* Modify the plugin page
     88
    8289= 1.0.6 =
    8390* Add composer libraries in the plugin
  • payapi-online-secure-payment/tags/1.0.7/vendor/autoload.php

    r1753035 r1753148  
    55require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInit22e65a22eace2a3d40d226491053ccb6::getLoader();
     7return ComposerAutoloaderInit8da6c238ab04c08980ead08a0072b59e::getLoader();
  • payapi-online-secure-payment/tags/1.0.7/vendor/composer/autoload_real.php

    r1753035 r1753148  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit22e65a22eace2a3d40d226491053ccb6
     5class ComposerAutoloaderInit8da6c238ab04c08980ead08a0072b59e
    66{
    77    private static $loader;
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInit22e65a22eace2a3d40d226491053ccb6', 'loadClassLoader'), true, true);
     22        spl_autoload_register(array('ComposerAutoloaderInit8da6c238ab04c08980ead08a0072b59e', 'loadClassLoader'), true, true);
    2323        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInit22e65a22eace2a3d40d226491053ccb6', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInit8da6c238ab04c08980ead08a0072b59e', 'loadClassLoader'));
    2525
    2626        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
     
    2828            require_once __DIR__ . '/autoload_static.php';
    2929
    30             call_user_func(\Composer\Autoload\ComposerStaticInit22e65a22eace2a3d40d226491053ccb6::getInitializer($loader));
     30            call_user_func(\Composer\Autoload\ComposerStaticInit8da6c238ab04c08980ead08a0072b59e::getInitializer($loader));
    3131        } else {
    3232            $map = require __DIR__ . '/autoload_namespaces.php';
  • payapi-online-secure-payment/tags/1.0.7/vendor/composer/autoload_static.php

    r1753035 r1753148  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit22e65a22eace2a3d40d226491053ccb6
     7class ComposerStaticInit8da6c238ab04c08980ead08a0072b59e
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    3232    {
    3333        return \Closure::bind(function () use ($loader) {
    34             $loader->prefixLengthsPsr4 = ComposerStaticInit22e65a22eace2a3d40d226491053ccb6::$prefixLengthsPsr4;
    35             $loader->prefixDirsPsr4 = ComposerStaticInit22e65a22eace2a3d40d226491053ccb6::$prefixDirsPsr4;
     34            $loader->prefixLengthsPsr4 = ComposerStaticInit8da6c238ab04c08980ead08a0072b59e::$prefixLengthsPsr4;
     35            $loader->prefixDirsPsr4 = ComposerStaticInit8da6c238ab04c08980ead08a0072b59e::$prefixDirsPsr4;
    3636
    3737        }, null, ClassLoader::class);
  • payapi-online-secure-payment/trunk/includes/check-partialpayments.php

    r1753018 r1753148  
    77
    88function 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;
    1212
    1313    if ($productId && $qty) {
  • payapi-online-secure-payment/trunk/payapiGateway.php

    r1752999 r1753148  
    44 * Plugin URI: https://wordpress.org/plugins/payapi-online-secure-payment/
    55 * Description: PayApi Online Secure Payment includes a new payment gateway for the checkout process through the PayApi Secure-Form
    6  * Version: 1.0.6
     6 * Version: 1.0.7
    77 * Author: PayApi
    88 * Author URI: https://payapi.io
     
    1616 * License URI: http://www.gnu.org/licenses/gpl-3.0.html
    1717 */
     18?>
     19<?php
    1820
    1921require_once __DIR__."/vendor/autoload.php";
     
    107109        $partialPay = get_partial_payment_from_cart();
    108110        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'));
    110112           
    111113            echo '<a rel="nofollow" style="margin-bottom:10px" class="cart-instantbuy-button payapi-partial checkout button">' . $strPartialP . '</a>';
     
    335337    $partialPay = get_partial_payment_from_cart();
    336338    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'));
    338340        echo '<button style="margin-top:10px;" type="button" class="alt button" id="payapi-checkout-partial"><span>'.$strPartialInitial.'</span></button>';       
    339341    }
  • payapi-online-secure-payment/trunk/readme.txt

    r1752999 r1753148  
    44Requires at least: 3.5
    55Tested up to: 4.8
    6 Stable tag: 1.0.6
     6Stable tag: 1.0.7
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
    99
    1010The 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 **
    1212== Description ==
    1313The 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.
     
    2828* Advanced anti-fraud operations for every payment: minimize your chargeback costs
    2929* 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!
    3132* Compatible with most of Woocommerce templates. Tested with most used templates as Flatsome, Shopkeeper, and some others free templates.w
    3233
     
    77782. Secure Form page 2
    78793. Social sharing
    79 4. PayApi settings page
     804. PayApi store
     815. PayApi image 
     826. PayApi shopping
     837. PayApi webshop
    8084
    8185== Changelog ==
     86= 1.0.7 =
     87* Modify the plugin page
     88
    8289= 1.0.6 =
    8390* Add composer libraries in the plugin
  • payapi-online-secure-payment/trunk/vendor/autoload.php

    r1753035 r1753148  
    55require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInit22e65a22eace2a3d40d226491053ccb6::getLoader();
     7return ComposerAutoloaderInit8da6c238ab04c08980ead08a0072b59e::getLoader();
  • payapi-online-secure-payment/trunk/vendor/composer/autoload_real.php

    r1753035 r1753148  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit22e65a22eace2a3d40d226491053ccb6
     5class ComposerAutoloaderInit8da6c238ab04c08980ead08a0072b59e
    66{
    77    private static $loader;
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInit22e65a22eace2a3d40d226491053ccb6', 'loadClassLoader'), true, true);
     22        spl_autoload_register(array('ComposerAutoloaderInit8da6c238ab04c08980ead08a0072b59e', 'loadClassLoader'), true, true);
    2323        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInit22e65a22eace2a3d40d226491053ccb6', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInit8da6c238ab04c08980ead08a0072b59e', 'loadClassLoader'));
    2525
    2626        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
     
    2828            require_once __DIR__ . '/autoload_static.php';
    2929
    30             call_user_func(\Composer\Autoload\ComposerStaticInit22e65a22eace2a3d40d226491053ccb6::getInitializer($loader));
     30            call_user_func(\Composer\Autoload\ComposerStaticInit8da6c238ab04c08980ead08a0072b59e::getInitializer($loader));
    3131        } else {
    3232            $map = require __DIR__ . '/autoload_namespaces.php';
  • payapi-online-secure-payment/trunk/vendor/composer/autoload_static.php

    r1753035 r1753148  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit22e65a22eace2a3d40d226491053ccb6
     7class ComposerStaticInit8da6c238ab04c08980ead08a0072b59e
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    3232    {
    3333        return \Closure::bind(function () use ($loader) {
    34             $loader->prefixLengthsPsr4 = ComposerStaticInit22e65a22eace2a3d40d226491053ccb6::$prefixLengthsPsr4;
    35             $loader->prefixDirsPsr4 = ComposerStaticInit22e65a22eace2a3d40d226491053ccb6::$prefixDirsPsr4;
     34            $loader->prefixLengthsPsr4 = ComposerStaticInit8da6c238ab04c08980ead08a0072b59e::$prefixLengthsPsr4;
     35            $loader->prefixDirsPsr4 = ComposerStaticInit8da6c238ab04c08980ead08a0072b59e::$prefixDirsPsr4;
    3636
    3737        }, null, ClassLoader::class);
Note: See TracChangeset for help on using the changeset viewer.