ActionScheduler_ListTable::row_action_cancel
Implements the logic behind running an action. ActionScheduler_Abstract_ListTable validates the request and their parameters are valid.
Method of the class: ActionScheduler_ListTable{}
No Hooks.
Returns
null. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->row_action_cancel( $action_id );
- $action_id(int) (required)
- Action ID.
ActionScheduler_ListTable::row_action_cancel() ActionScheduler ListTable::row action cancel code WC 10.7.0
protected function row_action_cancel( $action_id ) {
$this->process_row_action( $action_id, 'cancel' );
}