wpdatatables_excel_after_delete_row

Contents

Description

The `wpdatatables_excel_after_delete_row` action is triggered after a row has been deleted in the Excel-like editor. This allows you to perform actions after the deletion, such as logging the event or handling any errors that may have occurred during the deletion process.

Usage

do_action('wpdatatables_excel_after_delete_row', int $rowId, int $tableId, string $error);

Parameters

  • $rowId int
    The ID of the row that was deleted.
  • $tableId int
    The ID of the table from which the row was deleted.
  • $error string
    Any error message returned from the deletion process, or an empty string if no error occurred.

Examples

// Callback function for the wpdatatables_excel_after_delete_row action
function log_excel_after_delete_row($rowId, $tableId, $error) {
    // Your code here
}

add_action('wpdatatables_excel_after_delete_row', 'log_excel_after_delete_row', 10, 3);