You are here

function date_plugin_display_attachment::options in Date 7

Same name and namespace in other branches
  1. 6 date_api.views.inc \date_plugin_display_attachment::options()

Override some of the parent options.

Overrides views_object::options

File

date_views/includes/date_plugin_display_attachment.inc, line 30
Views display plugin for Date API.

Class

date_plugin_display_attachment
The plugin that handles date navigation attachments.

Code

function options(&$display) {
  parent::options($display);
  $display['style_plugin'] = 'date_nav';
  $display['items_per_page'] = 0;
  $display['row_plugin']['default'] = '';
  $display['default']['style_plugin'] = FALSE;
  $display['default']['style_options'] = FALSE;
  $display['default']['items_per_page'] = FALSE;
  $display['default']['row_plugin'] = FALSE;
  $display['default']['row_options'] = FALSE;
  return $display;
}