You are here

function date_plugin_display_attachment::defaultable_sections in Date 6

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

File

./date_api.views.inc, line 421
Defines date-related Views data and plugins:

Class

date_plugin_display_attachment
The plugin that handles date navigation attachments.

Code

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