Plugin Directory

Changeset 2215510


Ignore:
Timestamp:
12/20/2019 06:06:57 AM (6 years ago)
Author:
wp_estatic
Message:

Fix : change funcation

Location:
woo-eway-addon/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • woo-eway-addon/trunk/README.txt

    r2215055 r2215510  
    33Tags: eway woocommerce plugin,eway plugin woocommerce,woocommerce, Eway, payment gateway,credit card,Eway addon,refund,credit cards payment Eway and woocommerce,Eway for woocommerce,Eway payment gateway for woocommerce,Eway payment in wordpress,Eway payment refunds,Eway plugin for woocommerce,Eway woocommerce addon,free Eway woocommerce plugin,woocommerce credit cards payment with Eway,woocommerce plugin Eway, ecommerce, e-commerce, commerce, cart, checkout
    44Requires at least: 4.0 & WooCommerce 2.3+
    5 Tested up to: 5.3 & Woocommerce 3.8.1
     5Tested up to: 5.3.2 & Woocommerce 3.8.1
    66Stable tag: trunk
    77License: GPLv3
     
    101101* Update - Latest version.
    102102* Fix - Remove deprecate funcations.
     103= 2.0.2 =
     104* Update - Latest version.
     105* Fix - Remove deprecate funcations.
    103106== Upgrade Notice ==
    104107
  • woo-eway-addon/trunk/woo-eway-addon.php

    r2215055 r2215510  
    44 * Plugin URI :         Addon for Eway and WooCommerce
    55 * Description:         Addon for Eway and WooCommerce allows you to accept payments on your Woocommerce store. It accpets credit card payments and processes them securely with your merchant account.
    6  * Version:             1.9.1
     6 * Version:             2.0.2
    77 * WC requires at least:2.3
    88 * WC tested up to:     3.8.1
    99 * Requires at least:   4.0+
    10  * Tested up to:        5.3
     10 * Tested up to:        5.3.2
    1111 * Contributors:        wp_estatic
    1212 * Author:              Estatic Infotech Pvt Ltd
     
    556556
    557557        if (!class_exists('WC_Payment_Gateway')) {
    558             add_action('admin_notices', 'activate_error1');
     558            add_action('admin_notices', 'ewet_activate_error');
    559559        }
    560560        if (!is_ssl()) {
    561             add_action('admin_notices', 'sslerror1');
     561            add_action('admin_notices', 'ewet_sslerror');
    562562        }
    563563
     
    568568
    569569/**
    570  * activate_error1
     570 * Activate error
    571571 */
    572 function activate_error1() {
     572function ewet_activate_error() {
    573573    $html = '<div class="error">';
    574574    $html .= '<p>';
     
    580580
    581581/**
    582  * sslerror1
     582 * ssl Error
    583583 */
    584 function sslerror1() {
     584function ewet_sslerror() {
    585585    $html = '<div class="error">';
    586586    $html .= '<p>';
     
    596596 * @return string
    597597 */
    598 function add_eway_gateway_class($methods) {
     598function ewet_add_eway_gateway_class($methods) {
    599599    $methods[] = 'WC_Gateway_Eway_EI';
    600600    return $methods;
    601601}
    602602
    603 add_filter('woocommerce_payment_gateways', 'add_eway_gateway_class');
     603add_filter('woocommerce_payment_gateways', 'ewet_add_eway_gateway_class');
    604604
    605605/**
    606  * add_custom_js_eway
     606 * ewet_add_custom_js_eway
    607607 */
    608 function add_custom_js_eway() {
     608function ewet_add_custom_js_eway() {
    609609    wp_enqueue_script('jquery-cc-eway', plugin_dir_url(__FILE__) . 'js/cc.custom_eway.js', array('jquery'), '1.0', True);
    610610}
    611611
    612 add_action('wp_enqueue_scripts', 'add_custom_js_eway');
     612add_action('wp_enqueue_scripts', 'ewet_add_custom_js_eway');
Note: See TracChangeset for help on using the changeset viewer.