wpdatatables_before_delete_row

Contents

Description

This action is triggered before a row is deleted from the table. This allows you to perform additional checks, logging, or actions before the deletion process takes place.

Usage

do_action('wpdatatables_before_delete_row', int $idVal, int $tableId, string $idKey);

Parameters

  • $idVal int
    The value of the identifier for the row being deleted.
  • $tableId int
    The ID of the table.
  • $idKey string
    The key of the column holding the row identifier.

Examples

// Callback function for the wpdatatables_before_delete_row action
function log_before_delete_row($idVal, $tableId, $idKey) {
    // Your code here
}

add_action('wpdatatables_before_delete_row', 'log_before_delete_row', 10, 3);