You appear to be a bot. Output may be restricted
Description
Bulk delete
Deletes actions based on their ID. This is the handler for the bulk delete. It assumes the data properly validated by the callee and it will delete the actions without any extra validation.
Usage
ActionScheduler_ListTable::bulk_delete( $ids, $ids_sql );
Parameters
- $ids
- ( array ) required –
- $ids_sql
- ( string ) required – Inherited and unused
Returns
void
Source
File name: woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_ListTable.php
Lines:
1 to 5 of 5
protected function bulk_delete( array $ids, $ids_sql ) { foreach ( $ids as $id ) { $this->store->delete_action( $id ); } }