You are here

function calendar_plugin_display_attachment::options in Calendar 7.2

Same name and namespace in other branches
  1. 6.2 includes/calendar_plugin_display_attachment.inc \calendar_plugin_display_attachment::options()
  2. 7 includes/calendar_plugin_display_attachment.inc \calendar_plugin_display_attachment::options()

Override some of the parent options.

Overrides views_object::options

File

includes/calendar_plugin_display_attachment.inc, line 172
Views display plugin for the Calendar module.

Class

calendar_plugin_display_attachment
The plugin that handles calendar attachment displays.

Code

function options(&$display) {
  parent::options($display);
  $display['inherit_argments'] = TRUE;
  $display['inherit_filters'] = TRUE;
  $display['attachment_position'] = 'after';
}