ActionScheduler_FatalErrorMonitor::detach()publicWC 1.0

Метод класса: ActionScheduler_FatalErrorMonitor{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$ActionScheduler_FatalErrorMonitor = new ActionScheduler_FatalErrorMonitor();
$ActionScheduler_FatalErrorMonitor->detach();

Код ActionScheduler_FatalErrorMonitor::detach() WC 8.7.0

public function detach() {
	$this->claim = NULL;
	$this->untrack_action();
	remove_action( 'shutdown', array( $this, 'handle_unexpected_shutdown' ) );
	remove_action( 'action_scheduler_before_execute', array( $this, 'track_current_action' ), 0 );
	remove_action( 'action_scheduler_after_execute',  array( $this, 'untrack_action' ), 0 );
	remove_action( 'action_scheduler_execution_ignored',  array( $this, 'untrack_action' ), 0 );
	remove_action( 'action_scheduler_failed_execution',  array( $this, 'untrack_action' ), 0 );
}