wpdatatables_excel_before_delete_row

Contents

Description

This action is triggered before a row is deleted in the wpDataTables Excel-like editor. This allows you to perform any necessary actions, such as logging or checking permissions, before the row deletion occurs.

Usage

do_action('wpdatatables_excel_before_delete_row', int $rowId, int $tableId);

Parameters

  • $rowId int
    The ID of the row being deleted.
  • $tableId int
    The ID of the table from which the row is being deleted.

Examples

// Callback function for the wpdatatables_excel_before_delete_row action
function log_excel_before_delete_row($rowId, $tableId) {
    // Your code here
}

add_action('wpdatatables_excel_before_delete_row', 'log_excel_before_delete_row', 10, 2);