action_scheduler_begin_execute, $action_id, $context

action_scheduler_begin_execute, $action_id, $context

Hook Type: action

See hook in core

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

do_action('action_scheduler_begin_execute, $action_id, $context') is found 1 times:

  • /vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Abstract_QueueRunner.php line 99
    					do_action( 'action_scheduler_execution_ignored', $action_id, $context );
    					return;
    				}
    
    				do_action( 'action_scheduler_begin_execute', $action_id, $context );
    
    				$action = $this->store->fetch_action( $action_id );
    				$this->store->log_execution( $action_id );
    				$action->execute();
    				do_action( 'action_scheduler_after_execute', $action_id, $action, $context );
    				$this->store->mark_complete( $action_id );