action_scheduler_enable_recreate_data_store, true

action_scheduler_enable_recreate_data_store, true

Hook Type: filter

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.5.0.0.1

apply_filters('action_scheduler_enable_recreate_data_store, true') is found 2 times:

  • /app/Common/Utils/ActionScheduler.php line 50
    		if ( ! is_admin() ) {
    			return;
    		}
    
    		if ( ! apply_filters( 'action_scheduler_enable_recreate_data_store', true ) ) { // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
    			return;
    		}
    
    		if (
    			! class_exists( 'ActionScheduler' ) ||
    			! class_exists( 'ActionScheduler_HybridStore' ) ||
    
  • /vendor/woocommerce/action-scheduler/classes/ActionScheduler_ListTable.php line 352
    	 */
    	public function display_admin_notices() {
    		global $wpdb;
    
    		if ( ( is_a( $this->store, 'ActionScheduler_HybridStore' ) || is_a( $this->store, 'ActionScheduler_DBStore' ) ) && apply_filters( 'action_scheduler_enable_recreate_data_store', true ) ) {
    			$table_list = array(
    				'actionscheduler_actions',
    				'actionscheduler_logs',
    				'actionscheduler_groups',
    				'actionscheduler_claims',
    			);