Plugin Directory

Changeset 3432390


Ignore:
Timestamp:
01/05/2026 05:01:41 AM (3 months ago)
Author:
pluginever
Message:

Update to version 1.1.0

Location:
wc-donation-manager
Files:
106 added
12 deleted
32 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wc-donation-manager/tags/1.1.0/composer.json

    r3386837 r3432390  
    11{
    22  "name": "pluginever/wc-donation-manager",
    3   "description": "Easily manage and collect donations with WooCommerce. It provides a seamless solution for receiving donations for charitable organizations, non-profits, or businesses supporting a cause.",
    4   "homepage": "https://pluginever.com/plugins/woocommerce-donation-manager-pro/",
    53  "type": "wordpress-plugin",
    6   "license": "GPL-v2-or-later",
    7   "prefer-stable": true,
    8   "minimum-stability": "dev",
     4  "license": "GPL-2.0-or-later",
    95  "require": {
    10     "php": ">=7.4",
    11     "byteever/bytekit-plugin": "^1.0",
    12     "byteever/bytekit-settings": "^1.0"
    13   },
    14   "require-dev": {
    15     "byteever/byteever-sniffs": "^1.1"
     6    "php": ">=7.4"
    167  },
    178  "autoload": {
     
    1910      "WooCommerceDonationManager\\": "includes/"
    2011    }
    21   },
    22   "autoload-dev": {},
    23   "config": {
    24     "preferred-install": "dist",
    25     "sort-packages": true,
    26     "optimize-autoloader": true,
    27     "allow-plugins": {
    28       "dealerdirect/phpcodesniffer-composer-installer": true
    29     }
    30   },
    31   "repositories": [
    32     {
    33       "type": "vcs",
    34       "url": "git@github.com:byteever/bytekit-plugin.git"
    35     },
    36     {
    37       "type": "vcs",
    38       "url": "git@github.com:byteever/bytekit-settings.git"
    39     }
    40   ],
    41   "scripts": {
    42     "post-install-cmd":"@strauss",
    43     "post-update-cmd": "@strauss",
    44     "makepot": "wp --allow-root i18n make-pot . --include=*.php,assets,includes,templates --slug=wc-donation-manager",
    45     "phpcs": "@php ./vendor/bin/phpcs --standard=phpcs.xml -s -v",
    46     "phpcbf": "@php ./vendor/bin/phpcbf --standard=phpcs.xml -v",
    47     "strauss": [
    48       "test -f ./bin/strauss.phar || curl -o bin/strauss.phar -L https://github.com/BrianHenryIE/strauss/releases/download/0.24.1/strauss.phar",
    49       "@php bin/strauss.phar",
    50       "find ./vendor/vendor-prefixed -type f -name '*.php' -exec perl -i -pe \"s/'bytekit-textdomain'/'wc-donation-manager'/g\" {} +"
    51     ]
    52   },
    53   "extra": {
    54     "strauss": {
    55       "target_directory": "vendor/vendor-prefixed",
    56       "namespace_prefix": "WooCommerceDonationManager\\",
    57       "classmap_prefix": "WooCommerceDonationManager__",
    58       "include_modified_date": false,
    59       "include_author": false,
    60       "delete_vendor_packages": true,
    61       "packages": [
    62         "byteever/bytekit-plugin",
    63         "byteever/bytekit-settings"
    64       ]
    65     }
    6612  }
    6713}
  • wc-donation-manager/tags/1.1.0/includes/Admin/Admin.php

    r3128579 r3432390  
    3535    public function enqueue_scripts( $hook ) {
    3636        $screen_ids = Utilities::get_screen_ids();
    37         WCDM()->scripts->enqueue_style( 'wcdm-admin', 'css/wcdm-admin.css', array( 'bytekit-layout', 'bytekit-components', 'woocommerce_admin_styles' ) );
    38         WCDM()->scripts->register_script( 'wcdm-admin', 'js/wcdm-admin.js' );
     37        WCDM()->scripts->enqueue_style( 'wcdm-admin', 'css/admin.css', array( 'bytekit-layout', 'bytekit-components', 'woocommerce_admin_styles' ) );
     38        WCDM()->scripts->register_script( 'wcdm-admin', 'js/admin.js' );
    3939
    4040        if ( in_array( $hook, $screen_ids, true ) ) {
  • wc-donation-manager/tags/1.1.0/includes/Admin/Notices.php

    r3401713 r3432390  
    3131        $current_time   = absint( wp_date( 'U' ) );
    3232
    33         // phpcs:disable
    34         // TODO: Uncomment the below code when Black Friday offer is over.
    35         /*
    3633        if ( ! defined( 'WCDM_PRO_VERSION' ) ) {
    3734            WCDM()->notices->add(
     
    4138                    'style'       => 'border-left-color: #0542fa;',
    4239                    'dismissible' => false,
    43                 )
    44             );
    45         }
    46         */
    47         // phpcs:enable
    48 
    49         // Black Friday offer notice.
    50         $black_friday_end_time = date_i18n( strtotime( '2025-12-05 00:00:00' ) );
    51         if ( ! defined( 'WCDM_PRO_VERSION' ) && $current_time < $black_friday_end_time ) {
    52             WCDM()->notices->add(
    53                 array(
    54                     'message'     => __DIR__ . '/views/notices/black-friday.php',
    55                     'dismissible' => false,
    56                     'notice_id'   => 'wcdm_black_friday_promo_2025',
    57                     'style'       => 'border-left-color: #000000;',
    58                     'class'       => 'notice-black-friday',
    5940                )
    6041            );
  • wc-donation-manager/tags/1.1.0/includes/Frontend/Frontend.php

    r3128579 r3432390  
    5252     */
    5353    public function enqueue_scripts() {
    54         WCDM()->scripts->enqueue_style( 'wcdm-frontend', 'css/wcdm-frontend.css' );
    55         WCDM()->scripts->enqueue_script( 'wcdm-frontend', 'js/wcdm-frontend.js', array( 'jquery' ) );
     54        WCDM()->scripts->enqueue_style( 'wcdm-frontend', 'css/frontend.css' );
     55        WCDM()->scripts->enqueue_script( 'wcdm-frontend', 'js/frontend.js', array( 'jquery' ) );
    5656    }
    5757}
  • wc-donation-manager/tags/1.1.0/includes/Plugin.php

    r3316892 r3432390  
    188188        register_post_type( 'wcdm_campaigns', apply_filters( 'wcdm_campaigns_post_type_args', $args ) );
    189189    }
    190 
    191     /**
    192      * Get assets path.
    193      *
    194      * @param string $file Optional. File name.
    195      *
    196      * @since 1.0.0
    197      * @return string
    198      */
    199     public function get_assets_path( $file = '' ) {
    200         return $this->get_dir_path( 'assets/' . $file );
    201     }
    202 
    203     /**
    204      * Get assets url.
    205      *
    206      * @param string $file Optional. File name.
    207      *
    208      * @since 1.0.0
    209      * @return string
    210      */
    211     public function get_assets_url( $file = '' ) {
    212         return $this->get_dir_url( 'assets/' . $file );
    213     }
    214190}
  • wc-donation-manager/tags/1.1.0/languages/wc-donation-manager.pot

    r3401713 r3432390  
    1 # Copyright (C) 2025 PluginEver
     1# Copyright (C) 2026 PluginEver
    22# This file is distributed under the GPL v2 or later.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Donation Manager 1.0.9\n"
     5"Project-Id-Version: Donation Manager 1.1.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-donation-manager\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-11-24T09:47:26+00:00\n"
     12"POT-Creation-Date: 2026-01-05T04:50:44+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
     
    529529msgstr ""
    530530
    531 #: includes/Admin/views/notices/black-friday.php:19
    532 msgid "Black Friday Mega Sale! Get Flat 40% OFF on Donation Manager Pro !!"
    533 msgstr ""
    534 
    535 #. translators: 1. Offer Percentage, 2. Coupon Code.
    536 #: includes/Admin/views/notices/black-friday.php:26
    537 #, php-format
    538 msgid "Unlock premium features at an unbeatable price this Black Friday! Enjoy %1$s on Donation Manager Pro with code %2$s. Hurry, this deal ends soon!"
    539 msgstr ""
    540 
    541 #: includes/Admin/views/notices/black-friday.php:38
    542 msgid "Claim your discount!!"
    543 msgstr ""
    544 
    545 #: includes/Admin/views/notices/black-friday.php:42
    546 msgid "Remind me later"
    547 msgstr ""
    548 
    549 #: includes/Admin/views/notices/black-friday.php:46
    550 msgid "Never show this again!"
    551 msgstr ""
    552 
    553531#: includes/Admin/views/notices/review.php:18
    554532msgid "Enjoying Donation Manager?"
  • wc-donation-manager/tags/1.1.0/readme.txt

    r3401713 r3432390  
    22Contributors: pluginever, manikmist09
    33Tags: donation, donations, donate, help, charitable
    4 Tested up to: 6.8
    5 Stable tag: 1.0.9
     4Tested up to: 6.9
     5Stable tag: 1.1.0
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    129129
    130130== Changelog ==
     131= 1.1.0 (5th January 2026) =
     132* Fix: Fixed a few known issues.
     133* Enhance: Update the plugin notices.
     134
    131135= 1.0.9 (24th November 2025) =
    132136* Enhance: Update the plugin notices.
  • wc-donation-manager/tags/1.1.0/vendor/autoload.php

    r3386837 r3432390  
    22
    33// autoload.php @generated by Composer
     4
    45if (PHP_VERSION_ID < 50600) {
    56    if (!headers_sent()) {
    67        header('HTTP/1.1 500 Internal Server Error');
    78    }
    8     $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running ' . PHP_VERSION . ', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.' . PHP_EOL;
     9    $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
    910    if (!ini_get('display_errors')) {
    1011        if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
     
    1718}
    1819
    19 if (file_exists(__DIR__ . '/vendor-prefixed/autoload.php')) {
    20     require_once __DIR__ . '/vendor-prefixed/autoload.php';
    21 }
     20require_once __DIR__ . '/composer/autoload_real.php';
    2221
    23 require_once __DIR__ . '/composer/autoload_real.php';
    24 return ComposerAutoloaderInit50389472b0cc6cc0a8c472936c614e43::getLoader();
     22return ComposerAutoloaderInit829104709811b7f3dd449467f8eccb9b::getLoader();
  • wc-donation-manager/tags/1.1.0/vendor/composer/LICENSE

    r3386837 r3432390  
     1
    12Copyright (c) Nils Adermann, Jordi Boggiano
    23
     
    1819OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    1920THE SOFTWARE.
     21
  • wc-donation-manager/tags/1.1.0/vendor/composer/autoload_classmap.php

    r3316892 r3432390  
    88return array(
    99    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
    10     'WooCommerceDonationManager\\Admin\\Actions' => $baseDir . '/includes/Admin/Actions.php',
    11     'WooCommerceDonationManager\\Admin\\Admin' => $baseDir . '/includes/Admin/Admin.php',
    12     'WooCommerceDonationManager\\Admin\\ListTables\\CampaignsListTable' => $baseDir . '/includes/Admin/ListTables/CampaignsListTable.php',
    13     'WooCommerceDonationManager\\Admin\\ListTables\\ListTable' => $baseDir . '/includes/Admin/ListTables/ListTable.php',
    14     'WooCommerceDonationManager\\Admin\\Menus' => $baseDir . '/includes/Admin/Menus.php',
    15     'WooCommerceDonationManager\\Admin\\Metaboxes' => $baseDir . '/includes/Admin/Metaboxes.php',
    16     'WooCommerceDonationManager\\Admin\\Notices' => $baseDir . '/includes/Admin/Notices.php',
    17     'WooCommerceDonationManager\\Admin\\Settings' => $baseDir . '/includes/Admin/Settings.php',
    18     'WooCommerceDonationManager\\Admin\\Utilities' => $baseDir . '/includes/Admin/Utilities.php',
    19     'WooCommerceDonationManager\\Donation\\Donation' => $baseDir . '/includes/Donation/Donation.php',
    20     'WooCommerceDonationManager\\Frontend\\Cart' => $baseDir . '/includes/Frontend/Cart.php',
    21     'WooCommerceDonationManager\\Frontend\\Frontend' => $baseDir . '/includes/Frontend/Frontend.php',
    22     'WooCommerceDonationManager\\Frontend\\Orders' => $baseDir . '/includes/Frontend/Orders.php',
    23     'WooCommerceDonationManager\\Frontend\\Product' => $baseDir . '/includes/Frontend/Product.php',
    24     'WooCommerceDonationManager\\Installer' => $baseDir . '/includes/Installer.php',
    25     'WooCommerceDonationManager\\Plugin' => $baseDir . '/includes/Plugin.php',
    2610);
  • wc-donation-manager/tags/1.1.0/vendor/composer/autoload_psr4.php

    r3316892 r3432390  
    77
    88return array(
     9    'WooCommerceDonationManager\\ByteKit\\' => array($vendorDir . '/byteever/bytekit-settings/src', $vendorDir . '/byteever/bytekit-plugin/src'),
    910    'WooCommerceDonationManager\\' => array($baseDir . '/includes'),
    1011);
  • wc-donation-manager/tags/1.1.0/vendor/composer/autoload_real.php

    r3386837 r3432390  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit50389472b0cc6cc0a8c472936c614e43
     5class ComposerAutoloaderInit829104709811b7f3dd449467f8eccb9b
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit50389472b0cc6cc0a8c472936c614e43', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit829104709811b7f3dd449467f8eccb9b', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit50389472b0cc6cc0a8c472936c614e43', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit829104709811b7f3dd449467f8eccb9b', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit50389472b0cc6cc0a8c472936c614e43::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit829104709811b7f3dd449467f8eccb9b::getInitializer($loader));
    3333
    34         $loader->setClassMapAuthoritative(true);
    3534        $loader->register(true);
    3635
  • wc-donation-manager/tags/1.1.0/vendor/composer/autoload_static.php

    r3386837 r3432390  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit50389472b0cc6cc0a8c472936c614e43
     7class ComposerStaticInit829104709811b7f3dd449467f8eccb9b
    88{
    99    public static $prefixLengthsPsr4 = array (
    10         'W' => 
     10        'W' =>
    1111        array (
     12            'WooCommerceDonationManager\\ByteKit\\' => 35,
    1213            'WooCommerceDonationManager\\' => 27,
    1314        ),
     
    1516
    1617    public static $prefixDirsPsr4 = array (
    17         'WooCommerceDonationManager\\' =>
     18        'WooCommerceDonationManager\\ByteKit\\' =>
     19        array (
     20            0 => __DIR__ . '/..' . '/byteever/bytekit-settings/src',
     21            1 => __DIR__ . '/..' . '/byteever/bytekit-plugin/src',
     22        ),
     23        'WooCommerceDonationManager\\' =>
    1824        array (
    1925            0 => __DIR__ . '/../..' . '/includes',
     
    2329    public static $classMap = array (
    2430        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
    25         'WooCommerceDonationManager\\Admin\\Actions' => __DIR__ . '/../..' . '/includes/Admin/Actions.php',
    26         'WooCommerceDonationManager\\Admin\\Admin' => __DIR__ . '/../..' . '/includes/Admin/Admin.php',
    27         'WooCommerceDonationManager\\Admin\\ListTables\\CampaignsListTable' => __DIR__ . '/../..' . '/includes/Admin/ListTables/CampaignsListTable.php',
    28         'WooCommerceDonationManager\\Admin\\ListTables\\ListTable' => __DIR__ . '/../..' . '/includes/Admin/ListTables/ListTable.php',
    29         'WooCommerceDonationManager\\Admin\\Menus' => __DIR__ . '/../..' . '/includes/Admin/Menus.php',
    30         'WooCommerceDonationManager\\Admin\\Metaboxes' => __DIR__ . '/../..' . '/includes/Admin/Metaboxes.php',
    31         'WooCommerceDonationManager\\Admin\\Notices' => __DIR__ . '/../..' . '/includes/Admin/Notices.php',
    32         'WooCommerceDonationManager\\Admin\\Settings' => __DIR__ . '/../..' . '/includes/Admin/Settings.php',
    33         'WooCommerceDonationManager\\Admin\\Utilities' => __DIR__ . '/../..' . '/includes/Admin/Utilities.php',
    34         'WooCommerceDonationManager\\Donation\\Donation' => __DIR__ . '/../..' . '/includes/Donation/Donation.php',
    35         'WooCommerceDonationManager\\Frontend\\Cart' => __DIR__ . '/../..' . '/includes/Frontend/Cart.php',
    36         'WooCommerceDonationManager\\Frontend\\Frontend' => __DIR__ . '/../..' . '/includes/Frontend/Frontend.php',
    37         'WooCommerceDonationManager\\Frontend\\Orders' => __DIR__ . '/../..' . '/includes/Frontend/Orders.php',
    38         'WooCommerceDonationManager\\Frontend\\Product' => __DIR__ . '/../..' . '/includes/Frontend/Product.php',
    39         'WooCommerceDonationManager\\Installer' => __DIR__ . '/../..' . '/includes/Installer.php',
    40         'WooCommerceDonationManager\\Plugin' => __DIR__ . '/../..' . '/includes/Plugin.php',
    4131    );
    4232
     
    4434    {
    4535        return \Closure::bind(function () use ($loader) {
    46             $loader->prefixLengthsPsr4 = ComposerStaticInit50389472b0cc6cc0a8c472936c614e43::$prefixLengthsPsr4;
    47             $loader->prefixDirsPsr4 = ComposerStaticInit50389472b0cc6cc0a8c472936c614e43::$prefixDirsPsr4;
    48             $loader->classMap = ComposerStaticInit50389472b0cc6cc0a8c472936c614e43::$classMap;
     36            $loader->prefixLengthsPsr4 = ComposerStaticInit829104709811b7f3dd449467f8eccb9b::$prefixLengthsPsr4;
     37            $loader->prefixDirsPsr4 = ComposerStaticInit829104709811b7f3dd449467f8eccb9b::$prefixDirsPsr4;
     38            $loader->classMap = ComposerStaticInit829104709811b7f3dd449467f8eccb9b::$classMap;
    4939
    5040        }, null, ClassLoader::class);
  • wc-donation-manager/tags/1.1.0/vendor/composer/installed.json

    r3386837 r3432390  
    33        {
    44            "name": "byteever/bytekit-plugin",
    5             "version": "v1.0.2",
    6             "version_normalized": "1.0.2.0",
     5            "version": "dev-trunk",
     6            "version_normalized": "dev-trunk",
    77            "source": {
    88                "type": "git",
    99                "url": "git@github.com:byteever/bytekit-plugin.git",
    10                 "reference": "794ec9834ecac6cead6b1064a605ff930864950b"
     10                "reference": "43692c253b4d83879f5302dc6feff5eb2448428d"
    1111            },
    1212            "dist": {
    1313                "type": "zip",
    14                 "url": "https://api.github.com/repos/byteever/bytekit-plugin/zipball/794ec9834ecac6cead6b1064a605ff930864950b",
    15                 "reference": "794ec9834ecac6cead6b1064a605ff930864950b",
     14                "url": "https://api.github.com/repos/byteever/bytekit-plugin/zipball/43692c253b4d83879f5302dc6feff5eb2448428d",
     15                "reference": "43692c253b4d83879f5302dc6feff5eb2448428d",
    1616                "shasum": ""
    1717            },
     
    1919                "php": ">=7.4"
    2020            },
    21             "require-dev": {
    22                 "byteever/byteever-sniffs": "dev-master",
    23                 "codeception/module-asserts": "^1.0",
    24                 "codeception/module-cli": "^1.0",
    25                 "codeception/module-db": "^1.0",
    26                 "codeception/module-filesystem": "^1.0",
    27                 "codeception/module-phpbrowser": "^1.0",
    28                 "codeception/module-rest": "^2.0",
    29                 "codeception/module-webdriver": "^1.0",
    30                 "codeception/util-universalframework": "^1.0",
    31                 "lucatume/wp-browser": "<3.5"
    32             },
    33             "time": "2025-02-27T09:59:41+00:00",
     21            "time": "2025-12-11T10:51:47+00:00",
    3422            "type": "library",
    3523            "installation-source": "dist",
    36             "autoload": [],
    37             "scripts": {
    38                 "phpcs": [
    39                     "@php ./vendor/bin/phpcs --standard=phpcs.xml -s -v"
    40                 ],
    41                 "phpcbf": [
    42                     "@php ./vendor/bin/phpcbf --standard=phpcs.xml -v"
    43                 ],
    44                 "test:setup": [
    45                     "bash bin/install-test-env.sh"
    46                 ],
    47                 "test:build": [
    48                     "vendor/bin/codecept build"
    49                 ],
    50                 "test:wpunit": [
    51                     "vendor/bin/codecept run wpunit --"
    52                 ],
    53                 "test:functional": [
    54                     "vendor/bin/codecept run functional --"
    55                 ],
    56                 "test:acceptance": [
    57                     "vendor/bin/codecept run acceptance --"
    58                 ],
    59                 "test:gen:wpunit": [
    60                     "vendor/bin/codecept generate:wpunit wpunit"
    61                 ],
    62                 "test:gen:functional": [
    63                     "vendor/bin/codecept generate:wpunit functional"
    64                 ],
    65                 "test:gen:acceptance": [
    66                     "vendor/bin/codecept generate:acceptance acceptance"
    67                 ],
    68                 "test": [
    69                     "vendor/bin/codecept run --"
    70                 ]
     24            "autoload": {
     25                "psr-4": {
     26                    "WooCommerceDonationManager\\ByteKit\\": "src/"
     27                }
    7128            },
    7229            "license": [
    7330                "GPL-3.0-or-later"
    7431            ],
    75             "authors": [
    76                 {
    77                     "name": "Sultan Nasir Uddin",
    78                     "email": "manikdrmc@gmail.com"
    79                 }
    80             ],
    81             "description": "A set of related classes to kick start WordPress plugin development.",
    8232            "support": {
    83                 "source": "https://github.com/byteever/bytekit-plugin/tree/v1.0.2",
     33                "source": "https://github.com/byteever/bytekit-plugin/tree/trunk",
    8434                "issues": "https://github.com/byteever/bytekit-plugin/issues"
    8535            },
     36            "abandoned": true,
    8637            "install-path": "../byteever/bytekit-plugin"
    8738        },
    8839        {
    8940            "name": "byteever/bytekit-settings",
    90             "version": "v1.0.2",
    91             "version_normalized": "1.0.2.0",
     41            "version": "dev-trunk",
     42            "version_normalized": "dev-trunk",
    9243            "source": {
    9344                "type": "git",
    9445                "url": "git@github.com:byteever/bytekit-settings.git",
    95                 "reference": "6fed19fd393c2037b967d5507d26cb98a1474bbd"
     46                "reference": "49c9d9488c0130356059b3d086e6d8487ca434ef"
    9647            },
    9748            "dist": {
    9849                "type": "zip",
    99                 "url": "https://api.github.com/repos/byteever/bytekit-settings/zipball/6fed19fd393c2037b967d5507d26cb98a1474bbd",
    100                 "reference": "6fed19fd393c2037b967d5507d26cb98a1474bbd",
     50                "url": "https://api.github.com/repos/byteever/bytekit-settings/zipball/49c9d9488c0130356059b3d086e6d8487ca434ef",
     51                "reference": "49c9d9488c0130356059b3d086e6d8487ca434ef",
    10152                "shasum": ""
    10253            },
     
    10455                "php": ">=7.4"
    10556            },
    106             "require-dev": {
    107                 "byteever/byteever-sniffs": "dev-master"
    108             },
    109             "time": "2024-11-26T04:26:23+00:00",
     57            "time": "2025-12-11T09:07:47+00:00",
    11058            "type": "library",
    11159            "installation-source": "dist",
    112             "autoload": [],
    113             "scripts": {
    114                 "phpcs": [
    115                     "@php ./vendor/bin/phpcs --standard=phpcs.xml -s -v"
    116                 ],
    117                 "phpcbf": [
    118                     "@php ./vendor/bin/phpcbf --standard=phpcs.xml -v"
    119                 ]
     60            "autoload": {
     61                "psr-4": {
     62                    "WooCommerceDonationManager\\ByteKit\\": "src/"
     63                }
    12064            },
    12165            "license": [
    12266                "GPL-3.0-or-later"
    12367            ],
    124             "authors": [
    125                 {
    126                     "name": "Sultan Nasir Uddin",
    127                     "email": "manikdrmc@gmail.com"
    128                 }
    129             ],
    13068            "support": {
    131                 "source": "https://github.com/byteever/bytekit-settings/tree/v1.0.2",
     69                "source": "https://github.com/byteever/bytekit-settings/tree/trunk",
    13270                "issues": "https://github.com/byteever/bytekit-settings/issues"
    13371            },
     72            "abandoned": true,
    13473            "install-path": "../byteever/bytekit-settings"
    13574        }
  • wc-donation-manager/tags/1.1.0/vendor/composer/installed.php

    r3401713 r3432390  
    22    'root' => array(
    33        'name' => 'pluginever/wc-donation-manager',
    4         'pretty_version' => 'v1.0.9',
    5         'version' => '1.0.9.0',
    6         'reference' => 'b875992aa1331739d792871ac7bda2972bd520bf',
     4        'pretty_version' => 'dev-master',
     5        'version' => 'dev-master',
     6        'reference' => 'ba55b7c076ee18c7e68a81029f72b1ab3801daa3',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'byteever/bytekit-plugin' => array(
    14             'pretty_version' => 'v1.0.2',
    15             'version' => '1.0.2.0',
    16             'reference' => '794ec9834ecac6cead6b1064a605ff930864950b',
     14            'pretty_version' => 'dev-trunk',
     15            'version' => 'dev-trunk',
     16            'reference' => '43692c253b4d83879f5302dc6feff5eb2448428d',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../byteever/bytekit-plugin',
     
    2121        ),
    2222        'byteever/bytekit-settings' => array(
    23             'pretty_version' => 'v1.0.2',
    24             'version' => '1.0.2.0',
    25             'reference' => '6fed19fd393c2037b967d5507d26cb98a1474bbd',
     23            'pretty_version' => 'dev-trunk',
     24            'version' => 'dev-trunk',
     25            'reference' => '49c9d9488c0130356059b3d086e6d8487ca434ef',
    2626            'type' => 'library',
    2727            'install_path' => __DIR__ . '/../byteever/bytekit-settings',
     
    3030        ),
    3131        'pluginever/wc-donation-manager' => array(
    32             'pretty_version' => 'v1.0.9',
    33             'version' => '1.0.9.0',
    34             'reference' => 'b875992aa1331739d792871ac7bda2972bd520bf',
     32            'pretty_version' => 'dev-master',
     33            'version' => 'dev-master',
     34            'reference' => 'ba55b7c076ee18c7e68a81029f72b1ab3801daa3',
    3535            'type' => 'wordpress-plugin',
    3636            'install_path' => __DIR__ . '/../../',
  • wc-donation-manager/tags/1.1.0/wc-donation-manager.php

    r3401713 r3432390  
    44 * Plugin URI:           https://pluginever.com/plugins/woocommerce-donation-manager-pro/
    55 * Description:          Easily manage and collect donations with WooCommerce. It provides a seamless solution for receiving donations for charitable organizations, non-profits, or businesses supporting a cause.
    6  * Version:              1.0.9
     6 * Version:              1.1.0
    77 * Requires at least:    5.2
     8 * Tested up to:         6.9
    89 * Requires PHP:         7.4
    910 * Author:               PluginEver
     
    1314 * Text Domain:          wc-donation-manager
    1415 * Domain Path:          /languages
    15  * Tested up to:         6.8
    1616 * WC requires at least: 3.0.0
    17  * WC tested up to:      10.3
     17 * WC tested up to:      10.4
    1818 * Requires Plugins:     woocommerce
    1919 *
    20  * @package WooCommerceDonationManager
     20 * @link                 https://pluginever.com
    2121 *
    2222 * This program is free software; you can redistribute it and/or modify
    2323 * it under the terms of the GNU General Public License as published by
    24  * the Free Software Foundation; either version 3 of the License, or
     24 * the Free Software Foundation; either version 2 of the License, or
    2525 * (at your option) any later version.
    2626 *
    2727 * This program is distributed in the hope that it will be useful,
    2828 * but WITHOUT ANY WARRANTY; without even the implied warranty of
    29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    3030 * GNU General Public License for more details.
     31 *
     32 * You should have received a copy of the GNU General Public License
     33 * along with this program; if not, write to the Free Software
     34 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
     35 * @author              Sultan Nasir Uddin <manikdrmc@gmail.com>
     36 * @copyright           2026 ByteEver
     37 * @license             GPL-2.0+
     38 * @package             WooCommerceDonationManager
    3139 */
    3240
    33 // Don't call the file directly.
    34 defined( 'ABSPATH' ) || exit();
     41defined( 'ABSPATH' ) || exit;
    3542
    36 // Require the autoloader.
     43// Autoloader.
    3744require_once __DIR__ . '/vendor/autoload.php';
    3845
  • wc-donation-manager/trunk/composer.json

    r3386837 r3432390  
    11{
    22  "name": "pluginever/wc-donation-manager",
    3   "description": "Easily manage and collect donations with WooCommerce. It provides a seamless solution for receiving donations for charitable organizations, non-profits, or businesses supporting a cause.",
    4   "homepage": "https://pluginever.com/plugins/woocommerce-donation-manager-pro/",
    53  "type": "wordpress-plugin",
    6   "license": "GPL-v2-or-later",
    7   "prefer-stable": true,
    8   "minimum-stability": "dev",
     4  "license": "GPL-2.0-or-later",
    95  "require": {
    10     "php": ">=7.4",
    11     "byteever/bytekit-plugin": "^1.0",
    12     "byteever/bytekit-settings": "^1.0"
    13   },
    14   "require-dev": {
    15     "byteever/byteever-sniffs": "^1.1"
     6    "php": ">=7.4"
    167  },
    178  "autoload": {
     
    1910      "WooCommerceDonationManager\\": "includes/"
    2011    }
    21   },
    22   "autoload-dev": {},
    23   "config": {
    24     "preferred-install": "dist",
    25     "sort-packages": true,
    26     "optimize-autoloader": true,
    27     "allow-plugins": {
    28       "dealerdirect/phpcodesniffer-composer-installer": true
    29     }
    30   },
    31   "repositories": [
    32     {
    33       "type": "vcs",
    34       "url": "git@github.com:byteever/bytekit-plugin.git"
    35     },
    36     {
    37       "type": "vcs",
    38       "url": "git@github.com:byteever/bytekit-settings.git"
    39     }
    40   ],
    41   "scripts": {
    42     "post-install-cmd":"@strauss",
    43     "post-update-cmd": "@strauss",
    44     "makepot": "wp --allow-root i18n make-pot . --include=*.php,assets,includes,templates --slug=wc-donation-manager",
    45     "phpcs": "@php ./vendor/bin/phpcs --standard=phpcs.xml -s -v",
    46     "phpcbf": "@php ./vendor/bin/phpcbf --standard=phpcs.xml -v",
    47     "strauss": [
    48       "test -f ./bin/strauss.phar || curl -o bin/strauss.phar -L https://github.com/BrianHenryIE/strauss/releases/download/0.24.1/strauss.phar",
    49       "@php bin/strauss.phar",
    50       "find ./vendor/vendor-prefixed -type f -name '*.php' -exec perl -i -pe \"s/'bytekit-textdomain'/'wc-donation-manager'/g\" {} +"
    51     ]
    52   },
    53   "extra": {
    54     "strauss": {
    55       "target_directory": "vendor/vendor-prefixed",
    56       "namespace_prefix": "WooCommerceDonationManager\\",
    57       "classmap_prefix": "WooCommerceDonationManager__",
    58       "include_modified_date": false,
    59       "include_author": false,
    60       "delete_vendor_packages": true,
    61       "packages": [
    62         "byteever/bytekit-plugin",
    63         "byteever/bytekit-settings"
    64       ]
    65     }
    6612  }
    6713}
  • wc-donation-manager/trunk/includes/Admin/Admin.php

    r3128579 r3432390  
    3535    public function enqueue_scripts( $hook ) {
    3636        $screen_ids = Utilities::get_screen_ids();
    37         WCDM()->scripts->enqueue_style( 'wcdm-admin', 'css/wcdm-admin.css', array( 'bytekit-layout', 'bytekit-components', 'woocommerce_admin_styles' ) );
    38         WCDM()->scripts->register_script( 'wcdm-admin', 'js/wcdm-admin.js' );
     37        WCDM()->scripts->enqueue_style( 'wcdm-admin', 'css/admin.css', array( 'bytekit-layout', 'bytekit-components', 'woocommerce_admin_styles' ) );
     38        WCDM()->scripts->register_script( 'wcdm-admin', 'js/admin.js' );
    3939
    4040        if ( in_array( $hook, $screen_ids, true ) ) {
  • wc-donation-manager/trunk/includes/Admin/Notices.php

    r3401713 r3432390  
    3131        $current_time   = absint( wp_date( 'U' ) );
    3232
    33         // phpcs:disable
    34         // TODO: Uncomment the below code when Black Friday offer is over.
    35         /*
    3633        if ( ! defined( 'WCDM_PRO_VERSION' ) ) {
    3734            WCDM()->notices->add(
     
    4138                    'style'       => 'border-left-color: #0542fa;',
    4239                    'dismissible' => false,
    43                 )
    44             );
    45         }
    46         */
    47         // phpcs:enable
    48 
    49         // Black Friday offer notice.
    50         $black_friday_end_time = date_i18n( strtotime( '2025-12-05 00:00:00' ) );
    51         if ( ! defined( 'WCDM_PRO_VERSION' ) && $current_time < $black_friday_end_time ) {
    52             WCDM()->notices->add(
    53                 array(
    54                     'message'     => __DIR__ . '/views/notices/black-friday.php',
    55                     'dismissible' => false,
    56                     'notice_id'   => 'wcdm_black_friday_promo_2025',
    57                     'style'       => 'border-left-color: #000000;',
    58                     'class'       => 'notice-black-friday',
    5940                )
    6041            );
  • wc-donation-manager/trunk/includes/Frontend/Frontend.php

    r3128579 r3432390  
    5252     */
    5353    public function enqueue_scripts() {
    54         WCDM()->scripts->enqueue_style( 'wcdm-frontend', 'css/wcdm-frontend.css' );
    55         WCDM()->scripts->enqueue_script( 'wcdm-frontend', 'js/wcdm-frontend.js', array( 'jquery' ) );
     54        WCDM()->scripts->enqueue_style( 'wcdm-frontend', 'css/frontend.css' );
     55        WCDM()->scripts->enqueue_script( 'wcdm-frontend', 'js/frontend.js', array( 'jquery' ) );
    5656    }
    5757}
  • wc-donation-manager/trunk/includes/Plugin.php

    r3316892 r3432390  
    188188        register_post_type( 'wcdm_campaigns', apply_filters( 'wcdm_campaigns_post_type_args', $args ) );
    189189    }
    190 
    191     /**
    192      * Get assets path.
    193      *
    194      * @param string $file Optional. File name.
    195      *
    196      * @since 1.0.0
    197      * @return string
    198      */
    199     public function get_assets_path( $file = '' ) {
    200         return $this->get_dir_path( 'assets/' . $file );
    201     }
    202 
    203     /**
    204      * Get assets url.
    205      *
    206      * @param string $file Optional. File name.
    207      *
    208      * @since 1.0.0
    209      * @return string
    210      */
    211     public function get_assets_url( $file = '' ) {
    212         return $this->get_dir_url( 'assets/' . $file );
    213     }
    214190}
  • wc-donation-manager/trunk/languages/wc-donation-manager.pot

    r3401713 r3432390  
    1 # Copyright (C) 2025 PluginEver
     1# Copyright (C) 2026 PluginEver
    22# This file is distributed under the GPL v2 or later.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Donation Manager 1.0.9\n"
     5"Project-Id-Version: Donation Manager 1.1.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-donation-manager\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-11-24T09:47:26+00:00\n"
     12"POT-Creation-Date: 2026-01-05T04:50:44+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
     
    529529msgstr ""
    530530
    531 #: includes/Admin/views/notices/black-friday.php:19
    532 msgid "Black Friday Mega Sale! Get Flat 40% OFF on Donation Manager Pro !!"
    533 msgstr ""
    534 
    535 #. translators: 1. Offer Percentage, 2. Coupon Code.
    536 #: includes/Admin/views/notices/black-friday.php:26
    537 #, php-format
    538 msgid "Unlock premium features at an unbeatable price this Black Friday! Enjoy %1$s on Donation Manager Pro with code %2$s. Hurry, this deal ends soon!"
    539 msgstr ""
    540 
    541 #: includes/Admin/views/notices/black-friday.php:38
    542 msgid "Claim your discount!!"
    543 msgstr ""
    544 
    545 #: includes/Admin/views/notices/black-friday.php:42
    546 msgid "Remind me later"
    547 msgstr ""
    548 
    549 #: includes/Admin/views/notices/black-friday.php:46
    550 msgid "Never show this again!"
    551 msgstr ""
    552 
    553531#: includes/Admin/views/notices/review.php:18
    554532msgid "Enjoying Donation Manager?"
  • wc-donation-manager/trunk/readme.txt

    r3401713 r3432390  
    22Contributors: pluginever, manikmist09
    33Tags: donation, donations, donate, help, charitable
    4 Tested up to: 6.8
    5 Stable tag: 1.0.9
     4Tested up to: 6.9
     5Stable tag: 1.1.0
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    129129
    130130== Changelog ==
     131= 1.1.0 (5th January 2026) =
     132* Fix: Fixed a few known issues.
     133* Enhance: Update the plugin notices.
     134
    131135= 1.0.9 (24th November 2025) =
    132136* Enhance: Update the plugin notices.
  • wc-donation-manager/trunk/vendor/autoload.php

    r3386837 r3432390  
    22
    33// autoload.php @generated by Composer
     4
    45if (PHP_VERSION_ID < 50600) {
    56    if (!headers_sent()) {
    67        header('HTTP/1.1 500 Internal Server Error');
    78    }
    8     $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running ' . PHP_VERSION . ', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.' . PHP_EOL;
     9    $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
    910    if (!ini_get('display_errors')) {
    1011        if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
     
    1718}
    1819
    19 if (file_exists(__DIR__ . '/vendor-prefixed/autoload.php')) {
    20     require_once __DIR__ . '/vendor-prefixed/autoload.php';
    21 }
     20require_once __DIR__ . '/composer/autoload_real.php';
    2221
    23 require_once __DIR__ . '/composer/autoload_real.php';
    24 return ComposerAutoloaderInit50389472b0cc6cc0a8c472936c614e43::getLoader();
     22return ComposerAutoloaderInit829104709811b7f3dd449467f8eccb9b::getLoader();
  • wc-donation-manager/trunk/vendor/composer/LICENSE

    r3386837 r3432390  
     1
    12Copyright (c) Nils Adermann, Jordi Boggiano
    23
     
    1819OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    1920THE SOFTWARE.
     21
  • wc-donation-manager/trunk/vendor/composer/autoload_classmap.php

    r3316892 r3432390  
    88return array(
    99    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
    10     'WooCommerceDonationManager\\Admin\\Actions' => $baseDir . '/includes/Admin/Actions.php',
    11     'WooCommerceDonationManager\\Admin\\Admin' => $baseDir . '/includes/Admin/Admin.php',
    12     'WooCommerceDonationManager\\Admin\\ListTables\\CampaignsListTable' => $baseDir . '/includes/Admin/ListTables/CampaignsListTable.php',
    13     'WooCommerceDonationManager\\Admin\\ListTables\\ListTable' => $baseDir . '/includes/Admin/ListTables/ListTable.php',
    14     'WooCommerceDonationManager\\Admin\\Menus' => $baseDir . '/includes/Admin/Menus.php',
    15     'WooCommerceDonationManager\\Admin\\Metaboxes' => $baseDir . '/includes/Admin/Metaboxes.php',
    16     'WooCommerceDonationManager\\Admin\\Notices' => $baseDir . '/includes/Admin/Notices.php',
    17     'WooCommerceDonationManager\\Admin\\Settings' => $baseDir . '/includes/Admin/Settings.php',
    18     'WooCommerceDonationManager\\Admin\\Utilities' => $baseDir . '/includes/Admin/Utilities.php',
    19     'WooCommerceDonationManager\\Donation\\Donation' => $baseDir . '/includes/Donation/Donation.php',
    20     'WooCommerceDonationManager\\Frontend\\Cart' => $baseDir . '/includes/Frontend/Cart.php',
    21     'WooCommerceDonationManager\\Frontend\\Frontend' => $baseDir . '/includes/Frontend/Frontend.php',
    22     'WooCommerceDonationManager\\Frontend\\Orders' => $baseDir . '/includes/Frontend/Orders.php',
    23     'WooCommerceDonationManager\\Frontend\\Product' => $baseDir . '/includes/Frontend/Product.php',
    24     'WooCommerceDonationManager\\Installer' => $baseDir . '/includes/Installer.php',
    25     'WooCommerceDonationManager\\Plugin' => $baseDir . '/includes/Plugin.php',
    2610);
  • wc-donation-manager/trunk/vendor/composer/autoload_psr4.php

    r3316892 r3432390  
    77
    88return array(
     9    'WooCommerceDonationManager\\ByteKit\\' => array($vendorDir . '/byteever/bytekit-settings/src', $vendorDir . '/byteever/bytekit-plugin/src'),
    910    'WooCommerceDonationManager\\' => array($baseDir . '/includes'),
    1011);
  • wc-donation-manager/trunk/vendor/composer/autoload_real.php

    r3386837 r3432390  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit50389472b0cc6cc0a8c472936c614e43
     5class ComposerAutoloaderInit829104709811b7f3dd449467f8eccb9b
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit50389472b0cc6cc0a8c472936c614e43', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit829104709811b7f3dd449467f8eccb9b', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit50389472b0cc6cc0a8c472936c614e43', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit829104709811b7f3dd449467f8eccb9b', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit50389472b0cc6cc0a8c472936c614e43::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit829104709811b7f3dd449467f8eccb9b::getInitializer($loader));
    3333
    34         $loader->setClassMapAuthoritative(true);
    3534        $loader->register(true);
    3635
  • wc-donation-manager/trunk/vendor/composer/autoload_static.php

    r3386837 r3432390  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit50389472b0cc6cc0a8c472936c614e43
     7class ComposerStaticInit829104709811b7f3dd449467f8eccb9b
    88{
    99    public static $prefixLengthsPsr4 = array (
    10         'W' => 
     10        'W' =>
    1111        array (
     12            'WooCommerceDonationManager\\ByteKit\\' => 35,
    1213            'WooCommerceDonationManager\\' => 27,
    1314        ),
     
    1516
    1617    public static $prefixDirsPsr4 = array (
    17         'WooCommerceDonationManager\\' =>
     18        'WooCommerceDonationManager\\ByteKit\\' =>
     19        array (
     20            0 => __DIR__ . '/..' . '/byteever/bytekit-settings/src',
     21            1 => __DIR__ . '/..' . '/byteever/bytekit-plugin/src',
     22        ),
     23        'WooCommerceDonationManager\\' =>
    1824        array (
    1925            0 => __DIR__ . '/../..' . '/includes',
     
    2329    public static $classMap = array (
    2430        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
    25         'WooCommerceDonationManager\\Admin\\Actions' => __DIR__ . '/../..' . '/includes/Admin/Actions.php',
    26         'WooCommerceDonationManager\\Admin\\Admin' => __DIR__ . '/../..' . '/includes/Admin/Admin.php',
    27         'WooCommerceDonationManager\\Admin\\ListTables\\CampaignsListTable' => __DIR__ . '/../..' . '/includes/Admin/ListTables/CampaignsListTable.php',
    28         'WooCommerceDonationManager\\Admin\\ListTables\\ListTable' => __DIR__ . '/../..' . '/includes/Admin/ListTables/ListTable.php',
    29         'WooCommerceDonationManager\\Admin\\Menus' => __DIR__ . '/../..' . '/includes/Admin/Menus.php',
    30         'WooCommerceDonationManager\\Admin\\Metaboxes' => __DIR__ . '/../..' . '/includes/Admin/Metaboxes.php',
    31         'WooCommerceDonationManager\\Admin\\Notices' => __DIR__ . '/../..' . '/includes/Admin/Notices.php',
    32         'WooCommerceDonationManager\\Admin\\Settings' => __DIR__ . '/../..' . '/includes/Admin/Settings.php',
    33         'WooCommerceDonationManager\\Admin\\Utilities' => __DIR__ . '/../..' . '/includes/Admin/Utilities.php',
    34         'WooCommerceDonationManager\\Donation\\Donation' => __DIR__ . '/../..' . '/includes/Donation/Donation.php',
    35         'WooCommerceDonationManager\\Frontend\\Cart' => __DIR__ . '/../..' . '/includes/Frontend/Cart.php',
    36         'WooCommerceDonationManager\\Frontend\\Frontend' => __DIR__ . '/../..' . '/includes/Frontend/Frontend.php',
    37         'WooCommerceDonationManager\\Frontend\\Orders' => __DIR__ . '/../..' . '/includes/Frontend/Orders.php',
    38         'WooCommerceDonationManager\\Frontend\\Product' => __DIR__ . '/../..' . '/includes/Frontend/Product.php',
    39         'WooCommerceDonationManager\\Installer' => __DIR__ . '/../..' . '/includes/Installer.php',
    40         'WooCommerceDonationManager\\Plugin' => __DIR__ . '/../..' . '/includes/Plugin.php',
    4131    );
    4232
     
    4434    {
    4535        return \Closure::bind(function () use ($loader) {
    46             $loader->prefixLengthsPsr4 = ComposerStaticInit50389472b0cc6cc0a8c472936c614e43::$prefixLengthsPsr4;
    47             $loader->prefixDirsPsr4 = ComposerStaticInit50389472b0cc6cc0a8c472936c614e43::$prefixDirsPsr4;
    48             $loader->classMap = ComposerStaticInit50389472b0cc6cc0a8c472936c614e43::$classMap;
     36            $loader->prefixLengthsPsr4 = ComposerStaticInit829104709811b7f3dd449467f8eccb9b::$prefixLengthsPsr4;
     37            $loader->prefixDirsPsr4 = ComposerStaticInit829104709811b7f3dd449467f8eccb9b::$prefixDirsPsr4;
     38            $loader->classMap = ComposerStaticInit829104709811b7f3dd449467f8eccb9b::$classMap;
    4939
    5040        }, null, ClassLoader::class);
  • wc-donation-manager/trunk/vendor/composer/installed.json

    r3386837 r3432390  
    33        {
    44            "name": "byteever/bytekit-plugin",
    5             "version": "v1.0.2",
    6             "version_normalized": "1.0.2.0",
     5            "version": "dev-trunk",
     6            "version_normalized": "dev-trunk",
    77            "source": {
    88                "type": "git",
    99                "url": "git@github.com:byteever/bytekit-plugin.git",
    10                 "reference": "794ec9834ecac6cead6b1064a605ff930864950b"
     10                "reference": "43692c253b4d83879f5302dc6feff5eb2448428d"
    1111            },
    1212            "dist": {
    1313                "type": "zip",
    14                 "url": "https://api.github.com/repos/byteever/bytekit-plugin/zipball/794ec9834ecac6cead6b1064a605ff930864950b",
    15                 "reference": "794ec9834ecac6cead6b1064a605ff930864950b",
     14                "url": "https://api.github.com/repos/byteever/bytekit-plugin/zipball/43692c253b4d83879f5302dc6feff5eb2448428d",
     15                "reference": "43692c253b4d83879f5302dc6feff5eb2448428d",
    1616                "shasum": ""
    1717            },
     
    1919                "php": ">=7.4"
    2020            },
    21             "require-dev": {
    22                 "byteever/byteever-sniffs": "dev-master",
    23                 "codeception/module-asserts": "^1.0",
    24                 "codeception/module-cli": "^1.0",
    25                 "codeception/module-db": "^1.0",
    26                 "codeception/module-filesystem": "^1.0",
    27                 "codeception/module-phpbrowser": "^1.0",
    28                 "codeception/module-rest": "^2.0",
    29                 "codeception/module-webdriver": "^1.0",
    30                 "codeception/util-universalframework": "^1.0",
    31                 "lucatume/wp-browser": "<3.5"
    32             },
    33             "time": "2025-02-27T09:59:41+00:00",
     21            "time": "2025-12-11T10:51:47+00:00",
    3422            "type": "library",
    3523            "installation-source": "dist",
    36             "autoload": [],
    37             "scripts": {
    38                 "phpcs": [
    39                     "@php ./vendor/bin/phpcs --standard=phpcs.xml -s -v"
    40                 ],
    41                 "phpcbf": [
    42                     "@php ./vendor/bin/phpcbf --standard=phpcs.xml -v"
    43                 ],
    44                 "test:setup": [
    45                     "bash bin/install-test-env.sh"
    46                 ],
    47                 "test:build": [
    48                     "vendor/bin/codecept build"
    49                 ],
    50                 "test:wpunit": [
    51                     "vendor/bin/codecept run wpunit --"
    52                 ],
    53                 "test:functional": [
    54                     "vendor/bin/codecept run functional --"
    55                 ],
    56                 "test:acceptance": [
    57                     "vendor/bin/codecept run acceptance --"
    58                 ],
    59                 "test:gen:wpunit": [
    60                     "vendor/bin/codecept generate:wpunit wpunit"
    61                 ],
    62                 "test:gen:functional": [
    63                     "vendor/bin/codecept generate:wpunit functional"
    64                 ],
    65                 "test:gen:acceptance": [
    66                     "vendor/bin/codecept generate:acceptance acceptance"
    67                 ],
    68                 "test": [
    69                     "vendor/bin/codecept run --"
    70                 ]
     24            "autoload": {
     25                "psr-4": {
     26                    "WooCommerceDonationManager\\ByteKit\\": "src/"
     27                }
    7128            },
    7229            "license": [
    7330                "GPL-3.0-or-later"
    7431            ],
    75             "authors": [
    76                 {
    77                     "name": "Sultan Nasir Uddin",
    78                     "email": "manikdrmc@gmail.com"
    79                 }
    80             ],
    81             "description": "A set of related classes to kick start WordPress plugin development.",
    8232            "support": {
    83                 "source": "https://github.com/byteever/bytekit-plugin/tree/v1.0.2",
     33                "source": "https://github.com/byteever/bytekit-plugin/tree/trunk",
    8434                "issues": "https://github.com/byteever/bytekit-plugin/issues"
    8535            },
     36            "abandoned": true,
    8637            "install-path": "../byteever/bytekit-plugin"
    8738        },
    8839        {
    8940            "name": "byteever/bytekit-settings",
    90             "version": "v1.0.2",
    91             "version_normalized": "1.0.2.0",
     41            "version": "dev-trunk",
     42            "version_normalized": "dev-trunk",
    9243            "source": {
    9344                "type": "git",
    9445                "url": "git@github.com:byteever/bytekit-settings.git",
    95                 "reference": "6fed19fd393c2037b967d5507d26cb98a1474bbd"
     46                "reference": "49c9d9488c0130356059b3d086e6d8487ca434ef"
    9647            },
    9748            "dist": {
    9849                "type": "zip",
    99                 "url": "https://api.github.com/repos/byteever/bytekit-settings/zipball/6fed19fd393c2037b967d5507d26cb98a1474bbd",
    100                 "reference": "6fed19fd393c2037b967d5507d26cb98a1474bbd",
     50                "url": "https://api.github.com/repos/byteever/bytekit-settings/zipball/49c9d9488c0130356059b3d086e6d8487ca434ef",
     51                "reference": "49c9d9488c0130356059b3d086e6d8487ca434ef",
    10152                "shasum": ""
    10253            },
     
    10455                "php": ">=7.4"
    10556            },
    106             "require-dev": {
    107                 "byteever/byteever-sniffs": "dev-master"
    108             },
    109             "time": "2024-11-26T04:26:23+00:00",
     57            "time": "2025-12-11T09:07:47+00:00",
    11058            "type": "library",
    11159            "installation-source": "dist",
    112             "autoload": [],
    113             "scripts": {
    114                 "phpcs": [
    115                     "@php ./vendor/bin/phpcs --standard=phpcs.xml -s -v"
    116                 ],
    117                 "phpcbf": [
    118                     "@php ./vendor/bin/phpcbf --standard=phpcs.xml -v"
    119                 ]
     60            "autoload": {
     61                "psr-4": {
     62                    "WooCommerceDonationManager\\ByteKit\\": "src/"
     63                }
    12064            },
    12165            "license": [
    12266                "GPL-3.0-or-later"
    12367            ],
    124             "authors": [
    125                 {
    126                     "name": "Sultan Nasir Uddin",
    127                     "email": "manikdrmc@gmail.com"
    128                 }
    129             ],
    13068            "support": {
    131                 "source": "https://github.com/byteever/bytekit-settings/tree/v1.0.2",
     69                "source": "https://github.com/byteever/bytekit-settings/tree/trunk",
    13270                "issues": "https://github.com/byteever/bytekit-settings/issues"
    13371            },
     72            "abandoned": true,
    13473            "install-path": "../byteever/bytekit-settings"
    13574        }
  • wc-donation-manager/trunk/vendor/composer/installed.php

    r3401713 r3432390  
    22    'root' => array(
    33        'name' => 'pluginever/wc-donation-manager',
    4         'pretty_version' => 'v1.0.9',
    5         'version' => '1.0.9.0',
    6         'reference' => 'b875992aa1331739d792871ac7bda2972bd520bf',
     4        'pretty_version' => 'dev-master',
     5        'version' => 'dev-master',
     6        'reference' => 'ba55b7c076ee18c7e68a81029f72b1ab3801daa3',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'byteever/bytekit-plugin' => array(
    14             'pretty_version' => 'v1.0.2',
    15             'version' => '1.0.2.0',
    16             'reference' => '794ec9834ecac6cead6b1064a605ff930864950b',
     14            'pretty_version' => 'dev-trunk',
     15            'version' => 'dev-trunk',
     16            'reference' => '43692c253b4d83879f5302dc6feff5eb2448428d',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../byteever/bytekit-plugin',
     
    2121        ),
    2222        'byteever/bytekit-settings' => array(
    23             'pretty_version' => 'v1.0.2',
    24             'version' => '1.0.2.0',
    25             'reference' => '6fed19fd393c2037b967d5507d26cb98a1474bbd',
     23            'pretty_version' => 'dev-trunk',
     24            'version' => 'dev-trunk',
     25            'reference' => '49c9d9488c0130356059b3d086e6d8487ca434ef',
    2626            'type' => 'library',
    2727            'install_path' => __DIR__ . '/../byteever/bytekit-settings',
     
    3030        ),
    3131        'pluginever/wc-donation-manager' => array(
    32             'pretty_version' => 'v1.0.9',
    33             'version' => '1.0.9.0',
    34             'reference' => 'b875992aa1331739d792871ac7bda2972bd520bf',
     32            'pretty_version' => 'dev-master',
     33            'version' => 'dev-master',
     34            'reference' => 'ba55b7c076ee18c7e68a81029f72b1ab3801daa3',
    3535            'type' => 'wordpress-plugin',
    3636            'install_path' => __DIR__ . '/../../',
  • wc-donation-manager/trunk/wc-donation-manager.php

    r3401713 r3432390  
    44 * Plugin URI:           https://pluginever.com/plugins/woocommerce-donation-manager-pro/
    55 * Description:          Easily manage and collect donations with WooCommerce. It provides a seamless solution for receiving donations for charitable organizations, non-profits, or businesses supporting a cause.
    6  * Version:              1.0.9
     6 * Version:              1.1.0
    77 * Requires at least:    5.2
     8 * Tested up to:         6.9
    89 * Requires PHP:         7.4
    910 * Author:               PluginEver
     
    1314 * Text Domain:          wc-donation-manager
    1415 * Domain Path:          /languages
    15  * Tested up to:         6.8
    1616 * WC requires at least: 3.0.0
    17  * WC tested up to:      10.3
     17 * WC tested up to:      10.4
    1818 * Requires Plugins:     woocommerce
    1919 *
    20  * @package WooCommerceDonationManager
     20 * @link                 https://pluginever.com
    2121 *
    2222 * This program is free software; you can redistribute it and/or modify
    2323 * it under the terms of the GNU General Public License as published by
    24  * the Free Software Foundation; either version 3 of the License, or
     24 * the Free Software Foundation; either version 2 of the License, or
    2525 * (at your option) any later version.
    2626 *
    2727 * This program is distributed in the hope that it will be useful,
    2828 * but WITHOUT ANY WARRANTY; without even the implied warranty of
    29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    3030 * GNU General Public License for more details.
     31 *
     32 * You should have received a copy of the GNU General Public License
     33 * along with this program; if not, write to the Free Software
     34 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
     35 * @author              Sultan Nasir Uddin <manikdrmc@gmail.com>
     36 * @copyright           2026 ByteEver
     37 * @license             GPL-2.0+
     38 * @package             WooCommerceDonationManager
    3139 */
    3240
    33 // Don't call the file directly.
    34 defined( 'ABSPATH' ) || exit();
     41defined( 'ABSPATH' ) || exit;
    3542
    36 // Require the autoloader.
     43// Autoloader.
    3744require_once __DIR__ . '/vendor/autoload.php';
    3845
Note: See TracChangeset for help on using the changeset viewer.