action_scheduler_admin_view_class

action_scheduler_admin_view_class

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

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('action_scheduler_admin_view_class') is found 1 times:

  • /packages/action-scheduler/classes/ActionScheduler_AdminView.php line 23
    	 */
    	public static function instance() {
    
    		if ( empty( self::$admin_view ) ) {
    			$class = apply_filters('action_scheduler_admin_view_class', 'ActionScheduler_AdminView');
    			self::$admin_view = new $class();
    		}
    
    		return self::$admin_view;
    	}