Plugin Directory

Changeset 3317042


Ignore:
Timestamp:
06/24/2025 01:47:36 PM (9 months ago)
Author:
tanvirh
Message:

add new file

Location:
dokan-kits
Files:
434 added
5 edited

Legend:

Unmodified
Added
Removed
  • dokan-kits/trunk/dokan-kits.php

    r3316541 r3317042  
    1212 * Plugin URI:      https://wordpress.org/plugins/dokan-kits
    1313 * Description:     The Helper Toolkits plugin for Dokan is a feature-packed add-on designed to streamline and enhance the functionality of your Dokan-powered multi-vendor marketplace.
    14  * Version:         3.0.0
     14 * Version:         3.0.1
    1515 * Author:          WPIntegrity
    1616 * Author URI:      https://wpintegrity.com/
     
    3737
    3838// Define plugin constants.
    39 define( 'DOKAN_KITS_VERSION', '3.0.0' );
     39define( 'DOKAN_KITS_VERSION', '3.0.1' );
    4040define( 'DOKAN_KITS_FILE', __FILE__ );
    4141define( 'DOKAN_KITS_BASENAME', plugin_basename( __FILE__ ) );
     
    9696
    9797        if ( ! isset( $dokan_kits_fs ) ) {
     98
     99            // Allow Freemius to be used in multisite.
     100            if ( ! defined( 'WP_FS__PRODUCT_19532_MULTISITE' ) ) {
     101                define( 'WP_FS__PRODUCT_19532_MULTISITE', true );
     102            }
     103
    98104            // Include Freemius SDK.
    99105            require_once __DIR__ . '/freemius/start.php';
  • dokan-kits/trunk/includes/Core/Data/Models/Settings.php

    r3316541 r3317042  
    4747     * @param array $data Data to initialize the object
    4848     * @param int   $read Whether to read from the database
    49      */
    50     public function __construct( array $data = array(), int $read = 0 ) {
     49     *
     50     * @throws \Exception
     51     */
     52    public function __construct( $data = array(), $read = 0 ) {
    5153        parent::__construct( $read );
     54
     55        // If data is not an array, convert it to an array
     56        $data = wp_parse_args(
     57            $data,
     58            array(
     59                'id'            => 0,
     60                'name'          => '',
     61                'value'         => '',
     62                'default'       => '',
     63                'date_created'  => 0,
     64                'date_modified' => 0,
     65            )
     66        );
    5267
    5368        $this->set_id( $data['id'] ?? 0 );
  • dokan-kits/trunk/languages/dokan-kits.pot

    r3316541 r3317042  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Dokan Kits 3.0.0\n"
     5"Project-Id-Version: Dokan Kits 3.0.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dokan-kits\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-06-23T20:53:50+00:00\n"
     12"POT-Creation-Date: 2025-06-24T13:33:56+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
  • dokan-kits/trunk/readme.txt

    r3316549 r3317042  
    22Contributors: wpintegrity,tanvirh,tanjiralmamun
    33Donate link: https://wpintegrity.com/donate
    4 Tags: dokan, woocommerce, multivendor, marketplace, vendor
     4Tags: dokan, woocommerce, multivendor, marketplace, vendor, tools, toolkit, marketplace tools
    55Requires at least: 6.4.2
    66Tested up to: 6.8
    7 Stable tag: 3.0.0
     7Stable tag: 3.0.1
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    115115== Changelog ==
    116116
    117 = 3.0.0 - June 20, 2025 =
     117= 3.0.1 - June 24, 2025 =
     118* Fixed a critical issue with setting data store
     119
     120= 3.0.0 - June 23, 2025 =
    118121* Complete rewrite with modern architecture
    119122* New React-based admin interface
     
    125128== Upgrade Notice ==
    126129
     130= 3.0.1 =
     131Fixed a critical issue with setting data store. Please update to ensure proper functionality.
     132
    127133= 3.0.0 =
    128134Major update with modern architecture, new React-based interface, and many new features. Please back up before upgrading.
  • dokan-kits/trunk/vendor/composer/installed.php

    r3316541 r3317042  
    44        'pretty_version' => 'dev-trunk',
    55        'version' => 'dev-trunk',
    6         'reference' => '47b6cd651512fe7193e6fa0f57f275c0ac6a9b2e',
     6        'reference' => 'dbf17333ebbfa3af76d8052de023d832911452e3',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-trunk',
    1515            'version' => 'dev-trunk',
    16             'reference' => '47b6cd651512fe7193e6fa0f57f275c0ac6a9b2e',
     16            'reference' => 'dbf17333ebbfa3af76d8052de023d832911452e3',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.