Changeset 3298457
- Timestamp:
- 05/22/2025 05:15:19 AM (10 months ago)
- Location:
- cryptopay-gateway-for-profilepress
- Files:
-
- 16 deleted
- 6 edited
- 1 copied
-
tags/1.0.3 (copied) (copied from cryptopay-gateway-for-profilepress/trunk)
-
tags/1.0.3/.gitattributes (deleted)
-
tags/1.0.3/.github (deleted)
-
tags/1.0.3/.gitignore (deleted)
-
tags/1.0.3/.wordpress-org (deleted)
-
tags/1.0.3/app/Loader.php (modified) (1 diff)
-
tags/1.0.3/cryptopay-gateway-for-profilepress.php (modified) (3 diffs)
-
tags/1.0.3/phpcs.xml (deleted)
-
tags/1.0.3/readme.md (deleted)
-
tags/1.0.3/readme.txt (modified) (2 diffs)
-
tags/1.0.3/vendor/beycanpress/cryptopay-integrator/.gitattributes (deleted)
-
tags/1.0.3/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-profilepress.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-profilepress/tags/1.0.3/app/Loader.php
r3100216 r3298457 23 23 24 24 // add transaction page 25 Helpers::createTransactionPage( 26 esc_html__('ProfilePress Transactions', 'pp-cryptopay'), 27 'profilepress', 28 10, 29 [ 30 'orderId' => function ($tx) { 31 return Helpers::run('view', 'components/link', [ 32 'url' => sprintf(admin_url('admin.php?page=ppress-orders&ppress_order_action=edit&id=1'), $tx->orderId), // @phpcs:ignore 33 /* translators: %d: order id */ 34 'text' => sprintf(esc_html__('View order #%d', 'gf-cryptopay'), $tx->orderId) 35 ]); 36 } 37 ] 38 ); 25 add_action('init', function (): void { 26 Helpers::createTransactionPage( 27 esc_html__('ProfilePress Transactions', 'pp-cryptopay'), 28 'profilepress', 29 9, 30 [ 31 'orderId' => function ($tx) { 32 return Helpers::run('view', 'components/link', [ 33 'url' => sprintf(admin_url('admin.php?page=ppress-orders&ppress_order_action=edit&id=1'), $tx->orderId), // @phpcs:ignore 34 /* translators: %d: order id */ 35 'text' => sprintf(esc_html__('View order #%d', 'gf-cryptopay'), $tx->orderId) 36 ]); 37 } 38 ] 39 ); 40 }); 39 41 40 42 Hook::addAction('payment_finished_profilepress', [$this, 'paymentFinished']); -
cryptopay-gateway-for-profilepress/tags/1.0.3/cryptopay-gateway-for-profilepress.php
r3198775 r3298457 12 12 /** 13 13 * Plugin Name: CryptoPay Gateway for ProfilePress 14 * Version: 1.0. 214 * Version: 1.0.3 15 15 * Plugin URI: https://beycanpress.com/cryptopay/ 16 16 * Description: Adds Cryptocurrency payment gateway (CryptoPay) for ProfilePress. … … 22 22 * Tags: Bitcoin, Ethereum, Crypto, Payment, ProfilePress 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('PP_CRYPTOPAY_FILE', __FILE__); 32 define('PP_CRYPTOPAY_VERSION', '1.0. 2');32 define('PP_CRYPTOPAY_VERSION', '1.0.3'); 33 33 define('PP_CRYPTOPAY_KEY', basename(__DIR__)); 34 34 define('PP_CRYPTOPAY_URL', plugin_dir_url(__FILE__)); -
cryptopay-gateway-for-profilepress/tags/1.0.3/readme.txt
r3198775 r3298457 3 3 Tags: Bitcoin, Ethereum, Crypto, Payment, ProfilePress 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. 28 Version: 1.0. 27 Stable Tag: 1.0.3 8 Version: 1.0.3 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 63 63 == Changelog == 64 64 65 = 1.0.3 = 66 * Fixed: _load_textdomain_just_in_time early call 67 65 68 = 1.0.2 = 66 69 * Fixed: Text domain warning. -
cryptopay-gateway-for-profilepress/trunk/app/Loader.php
r3100216 r3298457 23 23 24 24 // add transaction page 25 Helpers::createTransactionPage( 26 esc_html__('ProfilePress Transactions', 'pp-cryptopay'), 27 'profilepress', 28 10, 29 [ 30 'orderId' => function ($tx) { 31 return Helpers::run('view', 'components/link', [ 32 'url' => sprintf(admin_url('admin.php?page=ppress-orders&ppress_order_action=edit&id=1'), $tx->orderId), // @phpcs:ignore 33 /* translators: %d: order id */ 34 'text' => sprintf(esc_html__('View order #%d', 'gf-cryptopay'), $tx->orderId) 35 ]); 36 } 37 ] 38 ); 25 add_action('init', function (): void { 26 Helpers::createTransactionPage( 27 esc_html__('ProfilePress Transactions', 'pp-cryptopay'), 28 'profilepress', 29 9, 30 [ 31 'orderId' => function ($tx) { 32 return Helpers::run('view', 'components/link', [ 33 'url' => sprintf(admin_url('admin.php?page=ppress-orders&ppress_order_action=edit&id=1'), $tx->orderId), // @phpcs:ignore 34 /* translators: %d: order id */ 35 'text' => sprintf(esc_html__('View order #%d', 'gf-cryptopay'), $tx->orderId) 36 ]); 37 } 38 ] 39 ); 40 }); 39 41 40 42 Hook::addAction('payment_finished_profilepress', [$this, 'paymentFinished']); -
cryptopay-gateway-for-profilepress/trunk/cryptopay-gateway-for-profilepress.php
r3198775 r3298457 12 12 /** 13 13 * Plugin Name: CryptoPay Gateway for ProfilePress 14 * Version: 1.0. 214 * Version: 1.0.3 15 15 * Plugin URI: https://beycanpress.com/cryptopay/ 16 16 * Description: Adds Cryptocurrency payment gateway (CryptoPay) for ProfilePress. … … 22 22 * Tags: Bitcoin, Ethereum, Crypto, Payment, ProfilePress 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('PP_CRYPTOPAY_FILE', __FILE__); 32 define('PP_CRYPTOPAY_VERSION', '1.0. 2');32 define('PP_CRYPTOPAY_VERSION', '1.0.3'); 33 33 define('PP_CRYPTOPAY_KEY', basename(__DIR__)); 34 34 define('PP_CRYPTOPAY_URL', plugin_dir_url(__FILE__)); -
cryptopay-gateway-for-profilepress/trunk/readme.txt
r3198775 r3298457 3 3 Tags: Bitcoin, Ethereum, Crypto, Payment, ProfilePress 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. 28 Version: 1.0. 27 Stable Tag: 1.0.3 8 Version: 1.0.3 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 63 63 == Changelog == 64 64 65 = 1.0.3 = 66 * Fixed: _load_textdomain_just_in_time early call 67 65 68 = 1.0.2 = 66 69 * Fixed: Text domain warning.
Note: See TracChangeset
for help on using the changeset viewer.