Plugin Directory

Changeset 3305268


Ignore:
Timestamp:
06/02/2025 08:00:20 PM (10 months ago)
Author:
slimndap
Message:

v1.32

Location:
jeero/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • jeero/trunk/Jeero.php

    r3296660 r3305268  
    66 * Author:          Slim & Dapper
    77 * Author URI:      https://slimndap.com
    8  * Version:         1.31.4
     8 * Version:         1.32
    99 * Text Domain:     jeero
    1010 *
     
    3232add_action( 'init', function() {
    3333
    34     define( 'Jeero\VERSION', '1.31.4' );
     34    define( 'Jeero\VERSION', '1.32' );
    3535    define( 'Jeero\PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
    3636    define( 'Jeero\PLUGIN_URI', plugin_dir_url( __FILE__ ) );
    3737
    3838    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   
    3953    \Jeero\Calendars\add_import_filters();
    4054    \Jeero\Inbox\schedule_next_pickup();
  • jeero/trunk/readme.txt

    r3296660 r3305268  
    9696== Changelog ==
    9797
     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
    98101= 1.31 =
    99102* Avoid conflicts with plugins and themes that use older versions of Twig.
Note: See TracChangeset for help on using the changeset viewer.