wpdatatables_excel_after_frontent_edit_cells

Contents

Description

The `wpdatatables_excel_after_frontent_edit_cells` action is triggered after cells have been edited via the frontend Excel-like editor.

Usage

do_action('wpdatatables_excel_after_frontent_edit_cells', $_POST['cells'], $returnResult, $tableId);

Parameters

  • $cells array
    The data of the cells that were modified.
  • $returnResult array
    The result of the editing operation.
  • $tableId int
    The ID of the table where the edit took place.

Examples

// Callback function for the wpdatatables_excel_after_frontent_edit_cells action
function log_after_frontend_edit_cells($cells, $returnResult, $tableId) {
    // Example: Log edited cells to a custom log file
    $log_entry = sprintf(
        "[%s] Table ID: %d | Edited Cells: %s | Errors: %s\n",
        date('Y-m-d H:i:s'),
        $tableId,
        json_encode($cells),
        isset($returnResult['error']) ? $returnResult['error'] : 'None'
    );
    file_put_contents(WP_CONTENT_DIR . '/uploads/wpdatatables_cells_edit_log.txt', $log_entry, FILE_APPEND);
}

add_action('wpdatatables_excel_after_frontent_edit_cells', 'log_after_frontend_edit_cells', 10, 3);