You are here

function views_data_export_plugin_display_export::defaultable_sections in Views data export 7.4

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

Return the sections that can be defaultable.

Overrides views_plugin_display_feed::defaultable_sections

File

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

Class

views_data_export_plugin_display_export
The plugin that batches its rendering.

Code

function defaultable_sections($section = NULL) {
  if (in_array($section, array(
    'items_per_page',
    'offset',
    'use_pager',
    'pager_element',
  ))) {
    return FALSE;
  }
  return parent::defaultable_sections($section);
}