Changeset 3157795
- Timestamp:
- 09/25/2024 07:34:11 PM (17 months ago)
- Location:
- zafepay
- Files:
-
- 4 edited
-
tags/1.0.5/includes/class-wc-gateway-zafepay.php (modified) (1 diff)
-
tags/1.0.5/readme.txt (modified) (1 diff)
-
tags/1.0.5/zafepay.php (modified) (3 diffs)
-
trunk/package.json (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
zafepay/tags/1.0.5/includes/class-wc-gateway-zafepay.php
r3151471 r3157795 56 56 'title' => __('Api Key para utilizar Zafepay', 'zafepay'), 57 57 '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].') 59 59 ], 60 60 'api_secret' => [ 61 61 'title' => __('Api Secret para utilizar Zafepay', 'zafepay'), 62 62 '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].') 64 64 ], 65 65 'test_api_key' => [ 66 66 'title' => __('Api Key para utilizar Zafepay en modo prueba', 'zafepay'), 67 67 '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].') 69 69 ], 70 70 'test_api_secret' => [ 71 71 'title' => __('Api Secret para utilizar Zafepay en modo prueba', 'zafepay'), 72 72 '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].') 74 74 ], 75 75 'testmode' => [ -
zafepay/tags/1.0.5/readme.txt
r3151471 r3157795 3 3 Tags: zafepay, transbank, webpay, chile, oneclick, fintoc, mach, payments 4 4 Requires at least: 5.7 5 Tested up to: 6. 45 Tested up to: 6.6 6 6 Stable tag: 1.0.5 7 7 Requires PHP: 7.0 -
zafepay/tags/1.0.5/zafepay.php
r3151848 r3157795 8 8 * Version: 1.0.5 9 9 * Requires at least: 5.7 10 * Tested up to: 6. 410 * Tested up to: 6.6 11 11 * Text Domain: zafepay 12 12 * Domain Path: /languages … … 23 23 define('WC_ZAFEPAY_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__)))); 24 24 25 function add_zafepay_gateway_class($methods)25 function zafepay_add_zafepay_gateway_class($methods) 26 26 { 27 27 $methods[] = WC_Gateway_Zafepay::class; … … 29 29 } 30 30 31 add_filter('woocommerce_payment_gateways', ' add_zafepay_gateway_class');32 add_action('plugins_loaded', ' initialize_zafepay_gateway_class');31 add_filter('woocommerce_payment_gateways', 'zafepay_add_zafepay_gateway_class'); 32 add_action('plugins_loaded', 'zafepay_initialize_zafepay_gateway_class'); 33 33 add_action('woocommerce_blocks_loaded', 'zafepay_gateway_woocommerce_block_support'); 34 34 35 function initialize_zafepay_gateway_class()35 function zafepay_initialize_zafepay_gateway_class() 36 36 { 37 37 require_once dirname(__FILE__) . '/includes/class-wc-gateway-zafepay.php'; -
zafepay/trunk/package.json
r3157772 r3157795 1 1 { 2 2 "name": "zafepay", 3 "version": "1.0. 5",3 "version": "1.0.4", 4 4 "description": "", 5 5 "main": "index.js",
Note: See TracChangeset
for help on using the changeset viewer.