Changeset 3298455
- Timestamp:
- 05/22/2025 05:10:54 AM (10 months ago)
- Location:
- cryptopay-gateway-for-learndash-lms
- Files:
-
- 2 deleted
- 6 edited
- 1 copied
-
tags/1.0.2 (copied) (copied from cryptopay-gateway-for-learndash-lms/trunk)
-
tags/1.0.2/.gitignore (deleted)
-
tags/1.0.2/app/Initialize.php (modified) (2 diffs)
-
tags/1.0.2/cryptopay-gateway-for-learndash-lms.php (modified) (3 diffs)
-
tags/1.0.2/readme.txt (modified) (2 diffs)
-
trunk/.gitignore (deleted)
-
trunk/app/Initialize.php (modified) (2 diffs)
-
trunk/cryptopay-gateway-for-learndash-lms.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cryptopay-gateway-for-learndash-lms/tags/1.0.2/app/Initialize.php
r3122724 r3298455 15 15 { 16 16 Helpers::registerIntegration('learndash'); 17 Helpers::createTransactionPage( 18 esc_html__('LearnDash transactions', 'cryptopay-gateway-for-learndash-lms'), 19 'learndash', 20 ); 17 18 add_action('init', function (): void { 19 Helpers::createTransactionPage( 20 esc_html__('LearnDash transactions', 'cryptopay-gateway-for-learndash-lms'), 21 'learndash', 22 9 23 ); 24 }); 21 25 22 26 add_filter('learndash_payment_gateways', [$this, 'registerGateway']); … … 49 53 { 50 54 if (Helpers::exists()) { 55 /** @disregard */ 51 56 Sections\SectionPro::add_section_instance(); 52 57 } 53 58 54 59 if (Helpers::liteExists()) { 60 /** @disregard */ 55 61 Sections\SectionLite::add_section_instance(); 56 62 } -
cryptopay-gateway-for-learndash-lms/tags/1.0.2/cryptopay-gateway-for-learndash-lms.php
r3198809 r3298455 12 12 /** 13 13 * Plugin Name: CryptoPay Gateway for LearnDash LMS 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 LearnDash LMS. … … 22 22 * Tags: Bitcoin, Ethereum, Cryptocurrency, Payments, LearnDash LMS 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 */ … … 32 32 33 33 define('LDLMS_CRYPTOPAY_FILE', __FILE__); 34 define('LDLMS_CRYPTOPAY_VERSION', '1.0. 1');34 define('LDLMS_CRYPTOPAY_VERSION', '1.0.2'); 35 35 define('LDLMS_CRYPTOPAY_URL', plugin_dir_url(__FILE__)); 36 36 define('LDLMS_CRYPTOPAY_DIR', plugin_dir_path(__FILE__)); -
cryptopay-gateway-for-learndash-lms/tags/1.0.2/readme.txt
r3198809 r3298455 3 3 Tags: Bitcoin, Ethereum, Cryptocurrency, Payments, LearnDash LMS 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 … … 59 59 == Changelog == 60 60 61 = 1.0.2 = 62 * Fixed: _load_textdomain_just_in_time early call 63 61 64 = 1.0.1 = 62 65 * Fixed: Text domain warning. -
cryptopay-gateway-for-learndash-lms/trunk/app/Initialize.php
r3122724 r3298455 15 15 { 16 16 Helpers::registerIntegration('learndash'); 17 Helpers::createTransactionPage( 18 esc_html__('LearnDash transactions', 'cryptopay-gateway-for-learndash-lms'), 19 'learndash', 20 ); 17 18 add_action('init', function (): void { 19 Helpers::createTransactionPage( 20 esc_html__('LearnDash transactions', 'cryptopay-gateway-for-learndash-lms'), 21 'learndash', 22 9 23 ); 24 }); 21 25 22 26 add_filter('learndash_payment_gateways', [$this, 'registerGateway']); … … 49 53 { 50 54 if (Helpers::exists()) { 55 /** @disregard */ 51 56 Sections\SectionPro::add_section_instance(); 52 57 } 53 58 54 59 if (Helpers::liteExists()) { 60 /** @disregard */ 55 61 Sections\SectionLite::add_section_instance(); 56 62 } -
cryptopay-gateway-for-learndash-lms/trunk/cryptopay-gateway-for-learndash-lms.php
r3198809 r3298455 12 12 /** 13 13 * Plugin Name: CryptoPay Gateway for LearnDash LMS 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 LearnDash LMS. … … 22 22 * Tags: Bitcoin, Ethereum, Cryptocurrency, Payments, LearnDash LMS 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 */ … … 32 32 33 33 define('LDLMS_CRYPTOPAY_FILE', __FILE__); 34 define('LDLMS_CRYPTOPAY_VERSION', '1.0. 1');34 define('LDLMS_CRYPTOPAY_VERSION', '1.0.2'); 35 35 define('LDLMS_CRYPTOPAY_URL', plugin_dir_url(__FILE__)); 36 36 define('LDLMS_CRYPTOPAY_DIR', plugin_dir_path(__FILE__)); -
cryptopay-gateway-for-learndash-lms/trunk/readme.txt
r3198809 r3298455 3 3 Tags: Bitcoin, Ethereum, Cryptocurrency, Payments, LearnDash LMS 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 … … 59 59 == Changelog == 60 60 61 = 1.0.2 = 62 * Fixed: _load_textdomain_just_in_time early call 63 61 64 = 1.0.1 = 62 65 * Fixed: Text domain warning.
Note: See TracChangeset
for help on using the changeset viewer.