wpdatatables_excel_after_delete_all_rows

Contents

Description

This action is triggered after multiple rows have been deleted in the Excel-like editor. This allows you to perform additional actions after the bulk deletion, such as logging or handling any errors that occurred during the deletion process.

Usage

do_action('wpdatatables_excel_after_delete_all_rows', int $tableId, array $returnResult);

Parameters

  • $tableId int
    The ID of the table from which the rows were deleted.
  • $returnResult array
    An associative array containing the results of the deletion operation, including any success or error messages.

Examples

// Callback function for the wpdatatables_excel_after_delete_all_rows action
function log_excel_after_delete_all_rows($tableId, $returnResult) {
    // Your code here
}

add_action('wpdatatables_excel_after_delete_all_rows', 'log_excel_after_delete_all_rows', 10, 2);