You are here

function views_data_export_plugin_display_export::index_tablename in Views data export 6.3

Same name and namespace in other branches
  1. 6 plugins/views_data_export_plugin_display_export.inc \views_data_export_plugin_display_export::index_tablename()
  2. 6.2 plugins/views_data_export_plugin_display_export.inc \views_data_export_plugin_display_export::index_tablename()
  3. 7.4 plugins/views_data_export_plugin_display_export.inc \views_data_export_plugin_display_export::index_tablename()
  4. 7 plugins/views_data_export_plugin_display_export.inc \views_data_export_plugin_display_export::index_tablename()
  5. 7.3 plugins/views_data_export_plugin_display_export.inc \views_data_export_plugin_display_export::index_tablename()

Return the name of the unique table to store the index in.

4 calls to views_data_export_plugin_display_export::index_tablename()
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.
views_data_export_plugin_display_export::execute_normal in plugins/views_data_export_plugin_display_export.inc
Compiles the next chunk of the output file
views_data_export_plugin_display_export::query in plugins/views_data_export_plugin_display_export.inc
Trick views into thinking that we have executed the query and got results.
views_data_export_plugin_display_export::remove_index in plugins/views_data_export_plugin_display_export.inc
Remove the index.

File

plugins/views_data_export_plugin_display_export.inc, line 562
Contains the bulk export display plugin.

Class

views_data_export_plugin_display_export
The plugin that batches its rendering.

Code

function index_tablename() {
  return VIEWS_DATA_EXPORT_INDEX_TABLE_PREFIX . $this->batched_execution_state->eid;
}