Plugin Directory

Changeset 3157772


Ignore:
Timestamp:
09/25/2024 06:47:32 PM (17 months ago)
Author:
aescobar0
Message:

bypassing warning W150002 and E200009

Location:
zafepay/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • zafepay/trunk/includes/class-wc-gateway-zafepay.php

    r3055598 r3157772  
    5656        'title' => __('Api Key para utilizar Zafepay', 'zafepay'),
    5757        'type' => 'text',
    58         'description' => __('Si no tienes una Api Key, contáctate con <a href="mailto:[email protected]">[email protected]</a>.')
     58        'description' => __('Si no tienes una Api Key, contáctate con [email protected].')
    5959      ],
    6060      'api_secret' => [
    6161        'title' => __('Api Secret para utilizar Zafepay', 'zafepay'),
    6262        'type' => 'text',
    63         'description' => __('Si no tienes una Api Secret, contáctate con <a href="mailto:[email protected]">[email protected]</a>.')
     63        'description' => __('Si no tienes una Api Secret, contáctate con [email protected].')
    6464      ],
    6565      'test_api_key' => [
    6666        'title' => __('Api Key para utilizar Zafepay en modo prueba', 'zafepay'),
    6767        'type' => 'text',
    68         'description' => __('Si no tienes una Api Key, contáctate con <a href="mailto:[email protected]">[email protected]</a>.')
     68        'description' => __('Si no tienes una Api Key, contáctate con [email protected].')
    6969      ],
    7070      'test_api_secret' => [
    7171        'title' => __('Api Secret para utilizar Zafepay en modo prueba', 'zafepay'),
    7272        'type' => 'text',
    73         'description' => __('Si no tienes una Api Secret, contáctate con <a href="mailto:[email protected]">[email protected]</a>.')
     73        'description' => __('Si no tienes una Api Secret, contáctate con [email protected].')
    7474      ],
    7575      'testmode' => [
  • zafepay/trunk/package.json

    r3055607 r3157772  
    11{
    22  "name": "zafepay",
    3   "version": "1.0.4",
     3  "version": "1.0.5",
    44  "description": "",
    55  "main": "index.js",
  • zafepay/trunk/readme.txt

    r3151813 r3157772  
    33Tags: zafepay, transbank, webpay, chile, oneclick, fintoc, mach, payments
    44Requires at least: 5.7
    5 Tested up to: 6.4
     5Tested up to: 6.6
    66Stable tag: 1.0.5
    77Requires PHP: 7.0
  • zafepay/trunk/zafepay.php

    r3151848 r3157772  
    88 * Version: 1.0.5
    99 * Requires at least: 5.7
    10  * Tested up to: 6.4
     10 * Tested up to: 6.6
    1111 * Text Domain: zafepay
    1212 * Domain Path: /languages
     
    2323define('WC_ZAFEPAY_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__))));
    2424
    25 function add_zafepay_gateway_class($methods)
     25function zafepay_add_zafepay_gateway_class($methods)
    2626{
    2727  $methods[] = WC_Gateway_Zafepay::class;
     
    2929}
    3030
    31 add_filter('woocommerce_payment_gateways', 'add_zafepay_gateway_class');
    32 add_action('plugins_loaded', 'initialize_zafepay_gateway_class');
     31add_filter('woocommerce_payment_gateways', 'zafepay_add_zafepay_gateway_class');
     32add_action('plugins_loaded', 'zafepay_initialize_zafepay_gateway_class');
    3333add_action('woocommerce_blocks_loaded', 'zafepay_gateway_woocommerce_block_support');
    3434
    35 function initialize_zafepay_gateway_class()
     35function zafepay_initialize_zafepay_gateway_class()
    3636{
    3737  require_once dirname(__FILE__) . '/includes/class-wc-gateway-zafepay.php';
Note: See TracChangeset for help on using the changeset viewer.