Changeset 3305268
- Timestamp:
- 06/02/2025 08:00:20 PM (10 months ago)
- Location:
- jeero/trunk
- Files:
-
- 2 edited
-
Jeero.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jeero/trunk/Jeero.php
r3296660 r3305268 6 6 * Author: Slim & Dapper 7 7 * Author URI: https://slimndap.com 8 * Version: 1.3 1.48 * Version: 1.32 9 9 * Text Domain: jeero 10 10 * … … 32 32 add_action( 'init', function() { 33 33 34 define( 'Jeero\VERSION', '1.3 1.4' );34 define( 'Jeero\VERSION', '1.32' ); 35 35 define( 'Jeero\PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); 36 36 define( 'Jeero\PLUGIN_URI', plugin_dir_url( __FILE__ ) ); 37 37 38 38 include_once \Jeero\PLUGIN_PATH . 'includes/Jeero.php'; 39 40 /** 41 * Trigger the Jeero loaded action. 42 * 43 * This allows other plugins or themes to hook into the 44 * initialization process of Jeero. 45 * This is useful for extending functionality, 46 * adding custom calendar integrations, or modifying 47 * the behavior of Jeero without modifying its core files. 48 * 49 * @since 1.32 50 */ 51 do_action( 'jeero/loaded' ); 52 39 53 \Jeero\Calendars\add_import_filters(); 40 54 \Jeero\Inbox\schedule_next_pickup(); -
jeero/trunk/readme.txt
r3296660 r3305268 96 96 == Changelog == 97 97 98 = 1.32 = 99 * Added a new 'jeero/loaded' action to allow other plugins or themes to hook into the initialization process of Jeero. 100 98 101 = 1.31 = 99 102 * Avoid conflicts with plugins and themes that use older versions of Twig.
Note: See TracChangeset
for help on using the changeset viewer.