You are here

function calendar_plugin_display_ical::options_form in Calendar 6.2

Same name and namespace in other branches
  1. 7 calendar_ical/calendar_plugin_display_ical.inc \calendar_plugin_display_ical::options_form()
  2. 7.2 calendar_ical/calendar_plugin_display_ical.inc \calendar_plugin_display_ical::options_form()

Provide the default form for setting options.

File

calendar_ical/calendar_plugin_display_ical.inc, line 115

Class

calendar_plugin_display_ical
The plugin that handles a feed, such as RSS or atom.

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 'title':
      $title = $form['title'];

      // A little juggling to move the 'title' field beyond our checkbox.
      unset($form['title']);
      $form['sitename_title'] = array(
        '#type' => 'checkbox',
        '#title' => t('Use the site name for the title'),
        '#default_value' => $this
          ->get_option('sitename_title'),
      );
      $form['title'] = $title;
      $form['title']['#process'] = array(
        'views_process_dependency',
      );
      $form['title']['#dependency'] = array(
        'edit-sitename-title' => array(
          FALSE,
        ),
      );
      break;
    case 'displays':
      $form['#title'] .= t('Attach to');
      $displays = array();
      foreach ($this->view->display as $display_id => $display) {
        if (!empty($display->handler) && $display->handler
          ->accept_attachments()) {
          $displays[$display_id] = $display->display_title;
        }
      }
      $form['displays'] = array(
        '#type' => 'checkboxes',
        '#description' => t('The ical icon will be shown only on the selected displays.'),
        '#options' => $displays,
        '#default_value' => $this
          ->get_option('displays'),
      );
      break;
    case 'path':
      $form['path']['#description'] = t('This view will be displayed by visiting this path on your site. It is recommended that the path be something like "path/%/%/ical", putting one % in the path for each argument you have defined in the view.');
      break;
  }
}