action_scheduler_init

action_scheduler_init

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

do_action('action_scheduler_init') is found 2 times:

  • /packages/action-scheduler/classes/abstracts/ActionScheduler.php line 217
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
                 * Fires when Action Scheduler is ready: it is safe to use the procedural API after this point.
                 *
                 * @since 3.5.5
                 */
                do_action( 'action_scheduler_init' );
            },
            1
        );
    } else {
        $admin_view->init();
        $store->init();
  • /packages/action-scheduler/classes/abstracts/ActionScheduler.php line 233
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
         * Fires when Action Scheduler is ready: it is safe to use the procedural API after this point.
         *
         * @since 3.5.5
         */
        do_action( 'action_scheduler_init' );
    }
     
    if ( apply_filters( 'action_scheduler_load_deprecated_functions', true ) ) {
        require_once self::plugin_path( 'deprecated/functions.php' );
    }