action_scheduler/no_action_to_migrate
Использование
add_action( 'action_scheduler/no_action_to_migrate', 'wp_kama_action_scheduler_no_to_migrate_action', 10, 3 );
/**
* Function for `action_scheduler/no_action_to_migrate` action-hook.
*
* @param $source_action_id
* @param $source
* @param $destination
*
* @return void
*/
function wp_kama_action_scheduler_no_to_migrate_action( $source_action_id, $source, $destination ){
// action...
}
- $source_action_id
- -
- $source
- -
- $destination
- -
Где вызывается хук
action_scheduler/no_action_to_migrate
woocommerce/packages/action-scheduler/classes/migration/ActionMigrator.php 76
do_action( 'action_scheduler/no_action_to_migrate', $source_action_id, $this->source, $this->destination ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores