You are here

public function IcalWizard::buildOptionsForm in Views iCal 8

Provide a form to edit options for this plugin.

Overrides StylePluginBase::buildOptionsForm

File

src/Plugin/views/style/IcalWizard.php, line 102

Class

IcalWizard
Style plugin to render an iCal feed. This provides a style usable for Feed displays.

Namespace

Drupal\views_ical\Plugin\views\style

Code

public function buildOptionsForm(&$form, FormStateInterface $form_state) {
  parent::buildOptionsForm($form, $form_state);

  /** @var array $field_options */
  $field_options = $this->displayHandler
    ->getFieldLabels();
  $field_options += [
    'none' => new TranslatableMarkup('None'),
  ];
  $form['instructions'] = [
    '#type' => 'markup',
    '#markup' => 'Use fields added from the fields section to map to iCal object properties.',
  ];
  $form['date_field'] = array(
    '#type' => 'select',
    '#title' => $this
      ->t('Date field'),
    '#options' => $field_options,
    '#default_value' => $this->options['date_field'],
    '#description' => $this
      ->t('Please identify the field to use as the iCal date for each item in this view.'),
    '#required' => TRUE,
  );
  $form['end_date_field'] = array(
    '#type' => 'select',
    '#title' => $this
      ->t('End date field'),
    '#options' => $field_options,
    '#default_value' => $this->options['end_date_field'],
    '#description' => $this
      ->t('If the date field selected above is not a date rang, and if end dates are defined in a separate date field, then select that field here here.'),
  );
  $form['no_time_field'] = array(
    '#type' => 'select',
    '#title' => $this
      ->t('All day field'),
    '#options' => $field_options,
    //TODO: Filter out only boolean fields. Allow this to be empty.
    '#default_value' => $this->options['no_time_field'],
    '#description' => $this
      ->t('Please identify the field to use to indicate an event will be all-day. If the date field uses the "Date all day" module, this option does not need to be set, and will be pulled automatically from the date field. TODO: Implement this.'),
  );
  $form['summary_field'] = array(
    '#type' => 'select',
    '#title' => $this
      ->t('SUMMARY field'),
    '#options' => $field_options,
    '#default_value' => $this->options['summary_field'],
    '#description' => $this
      ->t('You may optionally change the SUMMARY component for each event in the iCal output. Choose which text field you would like to be output as the SUMMARY.'),
  );
  $form['location_field'] = array(
    '#type' => 'select',
    '#title' => $this
      ->t('LOCATION field'),
    '#options' => $field_options,
    '#default_value' => $this->options['location_field'],
    '#description' => $this
      ->t('You may optionally include a LOCATION component for each event in the iCal output. Choose which text field you would like to be output as the LOCATION.'),
  );
  $form['url_field'] = array(
    '#type' => 'select',
    '#title' => $this
      ->t('URL field'),
    '#options' => $field_options,
    '#default_value' => $this->options['url_field'],
    '#description' => $this
      ->t('You may optionally include a URL component for each event in the iCal output. Choose which link field you would like to be output as the URL.'),
  );
  $form['description_field'] = array(
    '#type' => 'select',
    '#title' => $this
      ->t('DESCRIPTION field'),
    '#options' => $field_options,
    '#default_value' => $this->options['description_field'],
    '#description' => $this
      ->t('You may optionally include a DESCRIPTION component for each event in the iCal output. Choose which text field you would like to be output as the DESCRIPTION.'),
  );
  $form['uid_field'] = array(
    '#type' => 'select',
    '#title' => $this
      ->t('UID field'),
    '#options' => $field_options,
    //TODO: Filter out only boolean fields.
    '#default_value' => $this->options['uid_field'],
    '#description' => $this
      ->t('The field to use to generate a unique identifier for this calendar object. This is important for mapping to created events in client applications. Note, at this time, this is the only field that supports rewriting.'),
  );
  $form['default_transparency'] = [
    '#type' => 'select',
    '#title' => 'Default transparecy',
    '#options' => [
      'TRANSPARENT' => $this
        ->t('Transparent'),
      'OPAQUE' => $this
        ->t('Opaque'),
    ],
    '#default value' => $this->options['uid_field'],
    '#description' => $this
      ->t('Set the transparency setting for this field. Transparency indicates whether an event on a calendar occupies time or not. A transparent event\'s time is available for other free time searching apps to locate. An opaque event will indicate the time is not available for other applications to use.'),
  ];
}