You are here

function views_data_export_update in Views data export 7.4

Same name and namespace in other branches
  1. 6.3 views_data_export.module \views_data_export_update()
  2. 6 views_data_export.module \views_data_export_update()
  3. 6.2 views_data_export.module \views_data_export_update()
  4. 7 views_data_export.module \views_data_export_update()
  5. 7.3 views_data_export.module \views_data_export_update()

Update an export row in the database

2 calls to views_data_export_update()
views_data_export_plugin_display_export::execute in plugins/views_data_export_plugin_display_export.inc
Execute this display handler.
views_data_export_plugin_display_export::execute_initial in plugins/views_data_export_plugin_display_export.inc
Initializes the whole export process and starts off the batch process.

File

./views_data_export.module, line 202
Provides the ability to export to specific

Code

function views_data_export_update($state) {

  // Note, drupal_write_record handles serializing
  // the sandbox field as per our schema definition
  drupal_write_record('views_data_export', $state, 'eid');
}