Changeset 3335424
- Timestamp:
- 07/28/2025 02:26:55 PM (8 months ago)
- Location:
- dokan-kits/trunk
- Files:
-
- 5 edited
-
dokan-kits.php (modified) (3 diffs)
-
includes/Admin/Notices/Dependencies.php (modified) (2 diffs)
-
languages/dokan-kits.pot (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dokan-kits/trunk/dokan-kits.php
r3335399 r3335424 12 12 * Plugin URI: https://wordpress.org/plugins/dokan-kits 13 13 * 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. 414 * Version: 3.0.5 15 15 * Author: WPIntegrity 16 16 * Author URI: https://wpintegrity.com/ … … 36 36 37 37 // Define plugin constants. 38 define( 'DOKAN_KITS_VERSION', '3.0. 4' );38 define( 'DOKAN_KITS_VERSION', '3.0.5' ); 39 39 define( 'DOKAN_KITS_FILE', __FILE__ ); 40 40 define( 'DOKAN_KITS_BASENAME', plugin_basename( __FILE__ ) ); … … 53 53 require_once __DIR__ . '/vendor/autoload.php'; 54 54 55 if ( ! class_exists( 'WooCommerce' ) || ! class_exists( 'WeDevs_Dokan' ) ) {55 if ( ! is_plugin_active( 'woocommerce/woocommerce.php' ) || ! is_plugin_active( 'dokan-lite/dokan.php' ) ) { 56 56 add_action( 'admin_notices', array( DokanKits\Admin\Notices\Dependencies::class, 'missing_dependencies_notice' ) ); 57 57 return; -
dokan-kits/trunk/includes/Admin/Notices/Dependencies.php
r3335399 r3335424 32 32 33 33 // Check for WooCommerce. 34 if ( ! class_exists( 'WooCommerce' ) ) {34 if ( ! is_plugin_active( 'woocommerce/woocommerce.php' ) ) { 35 35 $missing_plugins[] = array( 36 36 'name' => 'WooCommerce', … … 41 41 42 42 // Check for Dokan. 43 if ( ! class_exists( 'WeDevs_Dokan' ) ) {43 if ( ! is_plugin_active( 'dokan-lite/dokan.php' ) ) { 44 44 $missing_plugins[] = array( 45 45 'name' => 'Dokan Lite', -
dokan-kits/trunk/languages/dokan-kits.pot
r3335399 r3335424 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Dokan Kits 3.0. 4\n"5 "Project-Id-Version: Dokan Kits 3.0.5\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dokan-kits\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-07-2 7T19:29:49+00:00\n"12 "POT-Creation-Date: 2025-07-28T14:18:59+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" -
dokan-kits/trunk/readme.txt
r3335399 r3335424 5 5 Requires at least: 6.4.2 6 6 Tested up to: 6.8 7 Stable tag: 3.0. 47 Stable tag: 3.0.5 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 122 122 == Changelog == 123 123 124 = 3.0.5 - Jul 28, 2025 = 125 * Fix: Resolve an critical issue on plugin dependency management. 126 124 127 = 3.0.4 - Jul 22, 2025 = 125 128 * Added support for card-select field components in admin interface -
dokan-kits/trunk/vendor/composer/installed.php
r3335399 r3335424 4 4 'pretty_version' => 'dev-trunk', 5 5 'version' => 'dev-trunk', 6 'reference' => ' 05caae49e36028dbd20fc5c9a10be81f886f1244',6 'reference' => '5d7b2d955c641f3cd4ead22335b127cad4b6d33b', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-trunk', 15 15 'version' => 'dev-trunk', 16 'reference' => ' 05caae49e36028dbd20fc5c9a10be81f886f1244',16 'reference' => '5d7b2d955c641f3cd4ead22335b127cad4b6d33b', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.