Changeset 3431689
- Timestamp:
- 01/03/2026 02:41:22 PM (2 months ago)
- Location:
- easy-dropbox-integration
- Files:
-
- 4 edited
- 1 copied
-
tags/1.12.5 (copied) (copied from easy-dropbox-integration/trunk)
-
tags/1.12.5/easy-dropbox-integration.php (modified) (4 diffs)
-
tags/1.12.5/readme.txt (modified) (2 diffs)
-
trunk/easy-dropbox-integration.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-dropbox-integration/tags/1.12.5/easy-dropbox-integration.php
r3431687 r3431689 23 23 * Plugin URI: https://ultradevs.com/easy-dropbox-integration/ 24 24 * Description: Easy DropBox Integration - Browse, Upload, Manage Your Dropbox Files from Your Website Easily. 25 * Version: 1.12. 425 * Version: 1.12.5 26 26 * Author: ultraDevs 27 27 * Author URI: https://ultradevs.com … … 35 35 36 36 // Constant. 37 define( 'EDBI_VERSION', '1.12. 4' );37 define( 'EDBI_VERSION', '1.12.5' ); 38 38 define( 'EDBI_NAME', 'Easy Dropbox Integration' ); 39 39 define( 'EDBI_DIR_PATH', plugin_dir_path( __FILE__ ) ); … … 117 117 add_action( 'plugins_loaded', array( $this, 'on_plugins_loaded' ) ); 118 118 add_action( 'edbi_loaded', array( $this, 'init' ) ); 119 add_action( 'edbi_after_init', array( $this, 'modules_manager' ) ); 119 120 } 120 121 … … 218 219 } 219 220 220 // Modules. 221 do_action( 'edbi_after_init' ); 222 } 223 224 /** 225 * Modules Manager. 226 * 227 * @return void 228 */ 229 public function modules_manager() { 221 230 $modules_manager = Module_Manager::get_instance(); 222 231 $modules_manager->register(); 223 224 do_action( 'edbi_after_init' );225 232 } 226 233 -
easy-dropbox-integration/tags/1.12.5/readme.txt
r3431687 r3431689 5 5 Requires at least: 5.3.2 6 6 Tested up to: 6.9 7 Stable tag: 1.12.47 Stable tag: 1.12.5 8 8 Requires PHP: 7.4.0 9 9 License: GPLv2 or later … … 147 147 148 148 == Changelog == 149 150 = 1.12.5 - 3 January, 2026 = 151 - **Fix:** Module Manager. 149 152 150 153 = 1.12.4 - 3 January, 2026 = -
easy-dropbox-integration/trunk/easy-dropbox-integration.php
r3431687 r3431689 23 23 * Plugin URI: https://ultradevs.com/easy-dropbox-integration/ 24 24 * Description: Easy DropBox Integration - Browse, Upload, Manage Your Dropbox Files from Your Website Easily. 25 * Version: 1.12. 425 * Version: 1.12.5 26 26 * Author: ultraDevs 27 27 * Author URI: https://ultradevs.com … … 35 35 36 36 // Constant. 37 define( 'EDBI_VERSION', '1.12. 4' );37 define( 'EDBI_VERSION', '1.12.5' ); 38 38 define( 'EDBI_NAME', 'Easy Dropbox Integration' ); 39 39 define( 'EDBI_DIR_PATH', plugin_dir_path( __FILE__ ) ); … … 117 117 add_action( 'plugins_loaded', array( $this, 'on_plugins_loaded' ) ); 118 118 add_action( 'edbi_loaded', array( $this, 'init' ) ); 119 add_action( 'edbi_after_init', array( $this, 'modules_manager' ) ); 119 120 } 120 121 … … 218 219 } 219 220 220 // Modules. 221 do_action( 'edbi_after_init' ); 222 } 223 224 /** 225 * Modules Manager. 226 * 227 * @return void 228 */ 229 public function modules_manager() { 221 230 $modules_manager = Module_Manager::get_instance(); 222 231 $modules_manager->register(); 223 224 do_action( 'edbi_after_init' );225 232 } 226 233 -
easy-dropbox-integration/trunk/readme.txt
r3431687 r3431689 5 5 Requires at least: 5.3.2 6 6 Tested up to: 6.9 7 Stable tag: 1.12.47 Stable tag: 1.12.5 8 8 Requires PHP: 7.4.0 9 9 License: GPLv2 or later … … 147 147 148 148 == Changelog == 149 150 = 1.12.5 - 3 January, 2026 = 151 - **Fix:** Module Manager. 149 152 150 153 = 1.12.4 - 3 January, 2026 =
Note: See TracChangeset
for help on using the changeset viewer.