action_scheduler_after_execute, $action_id, $action, $context
action_scheduler_after_execute, $action_id, $action, $context
Appears in: all-in-one-seo-pack.5.0.0.1
Hook Type: action
Displaying hooks found in version: all-in-one-seo-pack.5.0.0.1do_action('action_scheduler_after_execute, $action_id, $action, $context') is found 1 times:
- /vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Abstract_QueueRunner.php line 104
$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 ); } catch ( Throwable $e ) { // Throwable is defined when executing under PHP 7.0 and up. We convert it to an exception, for // compatibility with ActionScheduler_Logger. throw new Exception( $e->getMessage(), $e->getCode(), $e ); }