Plugin Directory

Changeset 3298450


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

Update to version 1.0.2 from GitHub

Location:
cryptopay-gateway-for-givewp
Files:
16 deleted
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • cryptopay-gateway-for-givewp/tags/1.0.2/app/Loader.php

    r3171493 r3298450  
    1919
    2020        // 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        });
    3537
    3638        add_action('init', [Helpers::class, 'listenSPP']);
  • cryptopay-gateway-for-givewp/tags/1.0.2/cryptopay-gateway-for-givewp.php

    r3198815 r3298450  
    1212/**
    1313 * Plugin Name: CryptoPay Gateway for GiveWP
    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 GiveWP.
     
    2222 * Tags: Bitcoin, Ethereum, Crypto, Payment, GiveWP
    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*/
     
    3030
    3131define('GIVEWP_CRYPTOPAY_FILE', __FILE__);
    32 define('GIVEWP_CRYPTOPAY_VERSION', '1.0.1');
     32define('GIVEWP_CRYPTOPAY_VERSION', '1.0.2');
    3333define('GIVEWP_CRYPTOPAY_KEY', basename(__DIR__));
    3434define('GIVEWP_CRYPTOPAY_URL', plugin_dir_url(__FILE__));
  • cryptopay-gateway-for-givewp/tags/1.0.2/readme.txt

    r3198815 r3298450  
    33Tags: Bitcoin, Ethereum, Crypto, Payment, GiveWP
    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
     
    5757== Changelog ==
    5858
     59= 1.0.2 =
     60* Fixed: _load_textdomain_just_in_time early call
     61
    5962= 1.0.1 =
    6063* Fixed: Text domain warning.
  • cryptopay-gateway-for-givewp/trunk/app/Loader.php

    r3171493 r3298450  
    1919
    2020        // 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        });
    3537
    3638        add_action('init', [Helpers::class, 'listenSPP']);
  • cryptopay-gateway-for-givewp/trunk/cryptopay-gateway-for-givewp.php

    r3198815 r3298450  
    1212/**
    1313 * Plugin Name: CryptoPay Gateway for GiveWP
    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 GiveWP.
     
    2222 * Tags: Bitcoin, Ethereum, Crypto, Payment, GiveWP
    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*/
     
    3030
    3131define('GIVEWP_CRYPTOPAY_FILE', __FILE__);
    32 define('GIVEWP_CRYPTOPAY_VERSION', '1.0.1');
     32define('GIVEWP_CRYPTOPAY_VERSION', '1.0.2');
    3333define('GIVEWP_CRYPTOPAY_KEY', basename(__DIR__));
    3434define('GIVEWP_CRYPTOPAY_URL', plugin_dir_url(__FILE__));
  • cryptopay-gateway-for-givewp/trunk/readme.txt

    r3198815 r3298450  
    33Tags: Bitcoin, Ethereum, Crypto, Payment, GiveWP
    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
     
    5757== Changelog ==
    5858
     59= 1.0.2 =
     60* Fixed: _load_textdomain_just_in_time early call
     61
    5962= 1.0.1 =
    6063* Fixed: Text domain warning.
Note: See TracChangeset for help on using the changeset viewer.