Changeset 3298450
- Timestamp:
- 05/22/2025 05:06:45 AM (10 months ago)
- Location:
- cryptopay-gateway-for-givewp
- Files:
-
- 16 deleted
- 6 edited
- 1 copied
-
tags/1.0.2 (copied) (copied from cryptopay-gateway-for-givewp/trunk)
-
tags/1.0.2/.gitattributes (deleted)
-
tags/1.0.2/.github (deleted)
-
tags/1.0.2/.gitignore (deleted)
-
tags/1.0.2/.wordpress-org (deleted)
-
tags/1.0.2/app/Loader.php (modified) (1 diff)
-
tags/1.0.2/cryptopay-gateway-for-givewp.php (modified) (3 diffs)
-
tags/1.0.2/phpcs.xml (deleted)
-
tags/1.0.2/readme.md (deleted)
-
tags/1.0.2/readme.txt (modified) (2 diffs)
-
tags/1.0.2/vendor/beycanpress/cryptopay-integrator/.gitattributes (deleted)
-
tags/1.0.2/vendor/beycanpress/cryptopay-integrator/phpcs.xml (deleted)
-
trunk/.gitattributes (deleted)
-
trunk/.github (deleted)
-
trunk/.gitignore (deleted)
-
trunk/.wordpress-org (deleted)
-
trunk/app/Loader.php (modified) (1 diff)
-
trunk/cryptopay-gateway-for-givewp.php (modified) (3 diffs)
-
trunk/phpcs.xml (deleted)
-
trunk/readme.md (deleted)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/beycanpress/cryptopay-integrator/.gitattributes (deleted)
-
trunk/vendor/beycanpress/cryptopay-integrator/phpcs.xml (deleted)
Legend:
- Unmodified
- Added
- Removed
-
cryptopay-gateway-for-givewp/tags/1.0.2/app/Loader.php
r3171493 r3298450 19 19 20 20 // add transaction page 21 Helpers::createTransactionPage( 22 esc_html__('GiveWP Transactions', 'cryptopay-gateway-for-givewp'), 23 'givewp', 24 10, 25 [ 26 'orderId' => function ($tx) { 27 return Helpers::run('view', 'components/link', [ 28 'url' => sprintf(admin_url('edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id=%d'), $tx->orderId), // @phpcs:ignore 29 /* translators: %d: transaction id */ 30 'text' => sprintf(esc_html__('View donate #%d', 'cryptopay-gateway-for-givewp'), $tx->orderId) 31 ]); 32 } 33 ] 34 ); 21 add_action('init', function (): void { 22 Helpers::createTransactionPage( 23 esc_html__('GiveWP Transactions', 'cryptopay-gateway-for-givewp'), 24 'givewp', 25 9, 26 [ 27 'orderId' => function ($tx) { 28 return Helpers::run('view', 'components/link', [ 29 'url' => sprintf(admin_url('edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id=%d'), $tx->orderId), // @phpcs:ignore 30 /* translators: %d: transaction id */ 31 'text' => sprintf(esc_html__('View donate #%d', 'cryptopay-gateway-for-givewp'), $tx->orderId) // @phpcs:ignore 32 ]); 33 } 34 ] 35 ); 36 }); 35 37 36 38 add_action('init', [Helpers::class, 'listenSPP']); -
cryptopay-gateway-for-givewp/tags/1.0.2/cryptopay-gateway-for-givewp.php
r3198815 r3298450 12 12 /** 13 13 * Plugin Name: CryptoPay Gateway for GiveWP 14 * Version: 1.0. 114 * Version: 1.0.2 15 15 * Plugin URI: https://beycanpress.com/cryptopay/ 16 16 * Description: Adds Cryptocurrency payment gateway (CryptoPay) for GiveWP. … … 22 22 * Tags: Bitcoin, Ethereum, Crypto, Payment, GiveWP 23 23 * Requires at least: 5.0 24 * Tested up to: 6. 7.124 * Tested up to: 6.8 25 25 * Requires PHP: 8.1 26 26 */ … … 30 30 31 31 define('GIVEWP_CRYPTOPAY_FILE', __FILE__); 32 define('GIVEWP_CRYPTOPAY_VERSION', '1.0. 1');32 define('GIVEWP_CRYPTOPAY_VERSION', '1.0.2'); 33 33 define('GIVEWP_CRYPTOPAY_KEY', basename(__DIR__)); 34 34 define('GIVEWP_CRYPTOPAY_URL', plugin_dir_url(__FILE__)); -
cryptopay-gateway-for-givewp/tags/1.0.2/readme.txt
r3198815 r3298450 3 3 Tags: Bitcoin, Ethereum, Crypto, Payment, GiveWP 4 4 Requires at least: 5.0 5 Tested up to: 6. 7.15 Tested up to: 6.8 6 6 Requires PHP: 8.1 7 Stable Tag: 1.0. 18 Version: 1.0. 17 Stable Tag: 1.0.2 8 Version: 1.0.2 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 57 57 == Changelog == 58 58 59 = 1.0.2 = 60 * Fixed: _load_textdomain_just_in_time early call 61 59 62 = 1.0.1 = 60 63 * Fixed: Text domain warning. -
cryptopay-gateway-for-givewp/trunk/app/Loader.php
r3171493 r3298450 19 19 20 20 // add transaction page 21 Helpers::createTransactionPage( 22 esc_html__('GiveWP Transactions', 'cryptopay-gateway-for-givewp'), 23 'givewp', 24 10, 25 [ 26 'orderId' => function ($tx) { 27 return Helpers::run('view', 'components/link', [ 28 'url' => sprintf(admin_url('edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id=%d'), $tx->orderId), // @phpcs:ignore 29 /* translators: %d: transaction id */ 30 'text' => sprintf(esc_html__('View donate #%d', 'cryptopay-gateway-for-givewp'), $tx->orderId) 31 ]); 32 } 33 ] 34 ); 21 add_action('init', function (): void { 22 Helpers::createTransactionPage( 23 esc_html__('GiveWP Transactions', 'cryptopay-gateway-for-givewp'), 24 'givewp', 25 9, 26 [ 27 'orderId' => function ($tx) { 28 return Helpers::run('view', 'components/link', [ 29 'url' => sprintf(admin_url('edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id=%d'), $tx->orderId), // @phpcs:ignore 30 /* translators: %d: transaction id */ 31 'text' => sprintf(esc_html__('View donate #%d', 'cryptopay-gateway-for-givewp'), $tx->orderId) // @phpcs:ignore 32 ]); 33 } 34 ] 35 ); 36 }); 35 37 36 38 add_action('init', [Helpers::class, 'listenSPP']); -
cryptopay-gateway-for-givewp/trunk/cryptopay-gateway-for-givewp.php
r3198815 r3298450 12 12 /** 13 13 * Plugin Name: CryptoPay Gateway for GiveWP 14 * Version: 1.0. 114 * Version: 1.0.2 15 15 * Plugin URI: https://beycanpress.com/cryptopay/ 16 16 * Description: Adds Cryptocurrency payment gateway (CryptoPay) for GiveWP. … … 22 22 * Tags: Bitcoin, Ethereum, Crypto, Payment, GiveWP 23 23 * Requires at least: 5.0 24 * Tested up to: 6. 7.124 * Tested up to: 6.8 25 25 * Requires PHP: 8.1 26 26 */ … … 30 30 31 31 define('GIVEWP_CRYPTOPAY_FILE', __FILE__); 32 define('GIVEWP_CRYPTOPAY_VERSION', '1.0. 1');32 define('GIVEWP_CRYPTOPAY_VERSION', '1.0.2'); 33 33 define('GIVEWP_CRYPTOPAY_KEY', basename(__DIR__)); 34 34 define('GIVEWP_CRYPTOPAY_URL', plugin_dir_url(__FILE__)); -
cryptopay-gateway-for-givewp/trunk/readme.txt
r3198815 r3298450 3 3 Tags: Bitcoin, Ethereum, Crypto, Payment, GiveWP 4 4 Requires at least: 5.0 5 Tested up to: 6. 7.15 Tested up to: 6.8 6 6 Requires PHP: 8.1 7 Stable Tag: 1.0. 18 Version: 1.0. 17 Stable Tag: 1.0.2 8 Version: 1.0.2 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 57 57 == Changelog == 58 58 59 = 1.0.2 = 60 * Fixed: _load_textdomain_just_in_time early call 61 59 62 = 1.0.1 = 60 63 * Fixed: Text domain warning.
Note: See TracChangeset
for help on using the changeset viewer.