wpdatatables_excel_after_frontent_edit_row

Contents

Description

The `wpdatatables_excel_after_frontent_edit_row` action is triggered after a row has been edited via the frontend Excel-like editor in wpDataTables.

Usage

do_action('wpdatatables_excel_after_frontent_edit_row', $tableId, $cellIdValue, $cellData, $qActionFlag, $sqlLastError);

Parameters

  • $tableId int
    The ID of the table where the edit took place.
  • $cellIdValue mixed
    The ID value of the affected row (primary key value).
  • $cellData array
    The data of the cells that were modified.
  • $qActionFlag string
    The action performed (`insert` or `update`).
  • $sqlLastError string
    The last SQL error encountered during the operation, if any.

Examples

// Callback function for the wpdatatables_excel_after_frontent_edit_row action
function log_after_frontend_edit_row($tableId, $cellIdValue, $cellData, $qActionFlag, $sqlLastError) {
    // Example: Log changes to a custom log file
    $log_entry = sprintf(
        "[%s] Table ID: %d | Row ID: %s | Action: %s | Error: %s\n",
        date('Y-m-d H:i:s'),
        $tableId,
        $cellIdValue,
        $qActionFlag,
        $sqlLastError ? $sqlLastError : 'None'
    );
    file_put_contents(WP_CONTENT_DIR . '/uploads/wpdatatables_edit_log.txt', $log_entry, FILE_APPEND);
}

add_action('wpdatatables_excel_after_frontent_edit_row', 'log_after_frontend_edit_row', 10, 5);