Plugin Directory

Changeset 3298455


Ignore:
Timestamp:
05/22/2025 05:10:54 AM (10 months ago)
Author:
beycanpress
Message:

Update to version 1.0.2 from GitHub

Location:
cryptopay-gateway-for-learndash-lms
Files:
2 deleted
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • cryptopay-gateway-for-learndash-lms/tags/1.0.2/app/Initialize.php

    r3122724 r3298455  
    1515    {
    1616        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        });
    2125
    2226        add_filter('learndash_payment_gateways', [$this, 'registerGateway']);
     
    4953    {
    5054        if (Helpers::exists()) {
     55            /** @disregard */
    5156            Sections\SectionPro::add_section_instance();
    5257        }
    5358
    5459        if (Helpers::liteExists()) {
     60            /** @disregard */
    5561            Sections\SectionLite::add_section_instance();
    5662        }
  • cryptopay-gateway-for-learndash-lms/tags/1.0.2/cryptopay-gateway-for-learndash-lms.php

    r3198809 r3298455  
    1212/**
    1313 * Plugin Name: CryptoPay Gateway for LearnDash LMS
    14  * Version:     1.0.1
     14 * Version:     1.0.2
    1515 * Plugin URI:  https://beycanpress.com/cryptopay/
    1616 * Description: Adds Cryptocurrency payment gateway (CryptoPay) for LearnDash LMS.
     
    2222 * Tags: Bitcoin, Ethereum, Cryptocurrency, Payments, LearnDash LMS
    2323 * Requires at least: 5.0
    24  * Tested up to: 6.7.1
     24 * Tested up to: 6.8
    2525 * Requires PHP: 8.1
    2626*/
     
    3232
    3333define('LDLMS_CRYPTOPAY_FILE', __FILE__);
    34 define('LDLMS_CRYPTOPAY_VERSION', '1.0.1');
     34define('LDLMS_CRYPTOPAY_VERSION', '1.0.2');
    3535define('LDLMS_CRYPTOPAY_URL', plugin_dir_url(__FILE__));
    3636define('LDLMS_CRYPTOPAY_DIR', plugin_dir_path(__FILE__));
  • cryptopay-gateway-for-learndash-lms/tags/1.0.2/readme.txt

    r3198809 r3298455  
    33Tags: Bitcoin, Ethereum, Cryptocurrency, Payments, LearnDash LMS
    44Requires at least: 5.0
    5 Tested up to: 6.7.1
     5Tested up to: 6.8
    66Requires PHP: 8.1
    7 Stable Tag: 1.0.1
    8 Version: 1.0.1
     7Stable Tag: 1.0.2
     8Version: 1.0.2
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    5959== Changelog ==
    6060
     61= 1.0.2 =
     62* Fixed: _load_textdomain_just_in_time early call
     63
    6164= 1.0.1 =
    6265* Fixed: Text domain warning.
  • cryptopay-gateway-for-learndash-lms/trunk/app/Initialize.php

    r3122724 r3298455  
    1515    {
    1616        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        });
    2125
    2226        add_filter('learndash_payment_gateways', [$this, 'registerGateway']);
     
    4953    {
    5054        if (Helpers::exists()) {
     55            /** @disregard */
    5156            Sections\SectionPro::add_section_instance();
    5257        }
    5358
    5459        if (Helpers::liteExists()) {
     60            /** @disregard */
    5561            Sections\SectionLite::add_section_instance();
    5662        }
  • cryptopay-gateway-for-learndash-lms/trunk/cryptopay-gateway-for-learndash-lms.php

    r3198809 r3298455  
    1212/**
    1313 * Plugin Name: CryptoPay Gateway for LearnDash LMS
    14  * Version:     1.0.1
     14 * Version:     1.0.2
    1515 * Plugin URI:  https://beycanpress.com/cryptopay/
    1616 * Description: Adds Cryptocurrency payment gateway (CryptoPay) for LearnDash LMS.
     
    2222 * Tags: Bitcoin, Ethereum, Cryptocurrency, Payments, LearnDash LMS
    2323 * Requires at least: 5.0
    24  * Tested up to: 6.7.1
     24 * Tested up to: 6.8
    2525 * Requires PHP: 8.1
    2626*/
     
    3232
    3333define('LDLMS_CRYPTOPAY_FILE', __FILE__);
    34 define('LDLMS_CRYPTOPAY_VERSION', '1.0.1');
     34define('LDLMS_CRYPTOPAY_VERSION', '1.0.2');
    3535define('LDLMS_CRYPTOPAY_URL', plugin_dir_url(__FILE__));
    3636define('LDLMS_CRYPTOPAY_DIR', plugin_dir_path(__FILE__));
  • cryptopay-gateway-for-learndash-lms/trunk/readme.txt

    r3198809 r3298455  
    33Tags: Bitcoin, Ethereum, Cryptocurrency, Payments, LearnDash LMS
    44Requires at least: 5.0
    5 Tested up to: 6.7.1
     5Tested up to: 6.8
    66Requires PHP: 8.1
    7 Stable Tag: 1.0.1
    8 Version: 1.0.1
     7Stable Tag: 1.0.2
     8Version: 1.0.2
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    5959== Changelog ==
    6060
     61= 1.0.2 =
     62* Fixed: _load_textdomain_just_in_time early call
     63
    6164= 1.0.1 =
    6265* Fixed: Text domain warning.
Note: See TracChangeset for help on using the changeset viewer.