You are here

function date_plugin_display_attachment::defaultable_sections in Date 6.2

Same name and namespace in other branches
  1. 6 date_api.views.inc \date_plugin_display_attachment::defaultable_sections()
  2. 7 date_views/includes/date_plugin_display_attachment.inc \date_plugin_display_attachment::defaultable_sections()

File

includes/date_plugin_display_attachment.inc, line 19
Views attachment display handler.

Class

date_plugin_display_attachment
The plugin that handles date navigation attachments.

Code

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