function calendar_plugin_display_attachment::options_form in Calendar 6.2
Same name and namespace in other branches
- 7 includes/calendar_plugin_display_attachment.inc \calendar_plugin_display_attachment::options_form()
- 7.2 includes/calendar_plugin_display_attachment.inc \calendar_plugin_display_attachment::options_form()
File
- includes/
calendar_plugin_display_attachment.inc, line 180
Class
- calendar_plugin_display_attachment
- The plugin that handles calendar attachment displays.
Code
function options_form(&$form, &$form_state) {
// It is very important to call the parent function here:
parent::options_form($form, $form_state);
switch ($form_state['section']) {
case 'calendar_type':
$form['#title'] .= t('Calendar period');
$form['calendar_type'] = array(
'#type' => 'select',
'#description' => t('Select the calendar time period for this display.'),
'#default_value' => $this
->calendar_type(),
'#options' => calendar_display_types(),
);
break;
}
}