action_scheduler_lock_class

action_scheduler_lock_class

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

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('action_scheduler_lock_class') is found 1 times:

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

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

    	 * @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;
    	}
    }