action_scheduler_lock_class

action_scheduler_lock_class

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.7.1

apply_filters('action_scheduler_lock_class') is found 1 times:

  • /packages/action-scheduler/classes/abstracts/ActionScheduler_Lock.php line 69

    Warning: Undefined array key 74 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
         * @return ActionScheduler_Lock
         */
        public static function instance() {
            if ( empty( self::$locker ) ) {
                $class        = apply_filters( 'action_scheduler_lock_class', 'ActionScheduler_OptionLock' );
                self::$locker = new $class();
            }
            return self::$locker;
        }
    }