Changeset 3296660
- Timestamp:
- 05/19/2025 04:31:02 PM (10 months ago)
- Location:
- jeero/trunk
- Files:
-
- 3 edited
-
Jeero.php (modified) (3 diffs)
-
includes/Calendars/Calendars.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jeero/trunk/Jeero.php
r3296592 r3296660 6 6 * Author: Slim & Dapper 7 7 * Author URI: https://slimndap.com 8 * Version: 1.31. 38 * Version: 1.31.4 9 9 * Text Domain: jeero 10 10 * … … 24 24 * 25 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() 26 * registers calendar import filters, and seeds the first Inbox pickup into WP-Cron. 27 * Calling add_import_filters() here ensures calendar import callbacks are attached 28 * before any inbox items are processed. Calling schedule_next_pickup() 27 29 * on every init is safe (it no-ops if an event is already scheduled) and 28 30 * ensures that WP-Cron has a job to process incoming items shortly after activation. … … 30 32 add_action( 'init', function() { 31 33 32 define( 'Jeero\VERSION', '1.31. 3' );34 define( 'Jeero\VERSION', '1.31.4' ); 33 35 define( 'Jeero\PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); 34 36 define( 'Jeero\PLUGIN_URI', plugin_dir_url( __FILE__ ) ); 35 37 36 38 include_once \Jeero\PLUGIN_PATH . 'includes/Jeero.php'; 39 \Jeero\Calendars\add_import_filters(); 37 40 \Jeero\Inbox\schedule_next_pickup(); 38 41 } ); -
jeero/trunk/includes/Calendars/Calendars.php
r2545093 r3296660 10 10 */ 11 11 $_jeero_calendars = array(); 12 13 add_action( 'init', __NAMESPACE__.'\add_import_filters' );14 12 15 13 /** -
jeero/trunk/readme.txt
r3296592 r3296660 267 267 == Upgrade Notice == 268 268 269 = 1.31. 3=269 = 1.31.4 = 270 270 * Fixes an issue with stalling imports. 271 271
Note: See TracChangeset
for help on using the changeset viewer.