ActionScheduler_ListTable::row_action_cancel()protectedWC 1.0

Implements the logic behind running an action. ActionScheduler_Abstract_ListTable validates the request and their parameters are valid.

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

Хуков нет.

Возвращает

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

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->row_action_cancel( $action_id );
$action_id(int) (обязательный)
-

Код ActionScheduler_ListTable::row_action_cancel() WC 8.7.0

protected function row_action_cancel( $action_id ) {
	$this->process_row_action( $action_id, 'cancel' );
}