Changeset 3296592
- Timestamp:
- 05/19/2025 03:17:56 PM (10 months ago)
- Location:
- jeero/trunk
- Files:
-
- 3 edited
-
Jeero.php (modified) (2 diffs)
-
includes/Inbox/Inbox.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jeero/trunk/Jeero.php
r3294991 r3296592 6 6 * Author: Slim & Dapper 7 7 * Author URI: https://slimndap.com 8 * Version: 1.31. 28 * Version: 1.31.3 9 9 * Text Domain: jeero 10 10 * … … 20 20 21 21 22 // Bootstrap plugin on init: include core functionality. 22 /** 23 * Bootstrap core plugin functionality on the 'init' hook. 24 * 25 * Defines plugin constants (version, path, URI), loads the main Jeero loader, 26 * and seeds the first Inbox pickup into WP-Cron. Calling schedule_next_pickup() 27 * on every init is safe (it no-ops if an event is already scheduled) and 28 * ensures that WP-Cron has a job to process incoming items shortly after activation. 29 */ 23 30 add_action( 'init', function() { 24 31 25 define( 'Jeero\VERSION', '1.31. 2' );32 define( 'Jeero\VERSION', '1.31.3' ); 26 33 define( 'Jeero\PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); 27 34 define( 'Jeero\PLUGIN_URI', plugin_dir_url( __FILE__ ) ); 28 35 29 36 include_once \Jeero\PLUGIN_PATH . 'includes/Jeero.php'; 37 \Jeero\Inbox\schedule_next_pickup(); 30 38 } ); -
jeero/trunk/includes/Inbox/Inbox.php
r3171580 r3296592 23 23 const PICKUP_ITEMS_HOOK = 'jeero\inbox\pickup_items'; 24 24 25 add_action( 'init', __NAMESPACE__.'\schedule_next_pickup' ); 25 // Scheduling of the next pickup is handled centrally in Jeero.php bootstrap. 26 26 27 add_action( PICKUP_ITEMS_HOOK, __NAMESPACE__.'\pickup_items' ); 27 28 -
jeero/trunk/readme.txt
r3294985 r3296592 267 267 == Upgrade Notice == 268 268 269 = 1.31.3 = 270 * Fixes an issue with stalling imports. 271 269 272 = 1.31 = 270 273 * Avoids conflicts with plugins and themes that use older versions of Twig.
Note: See TracChangeset
for help on using the changeset viewer.