You are here

public function EventDateStringField::submitOptionsForm in RNG - Events and Registrations 8.2

Same name and namespace in other branches
  1. 3.x src/Plugin/views/field/EventDateStringField.php \Drupal\rng\Plugin\views\field\EventDateStringField::submitOptionsForm()

Performs some cleanup tasks on the options array before saving it.

Overrides FieldPluginBase::submitOptionsForm

File

src/Plugin/views/field/EventDateStringField.php, line 184

Class

EventDateStringField
A handler to provide a field that is completely custom by the administrator.

Namespace

Drupal\rng\Plugin\views\field

Code

public function submitOptionsForm(&$form, FormStateInterface $form_state) {
  $options =& $form_state
    ->getValue('options');
  parent::submitOptionsForm($form, $form_state);

  // TODO: Change the autogenerated stub
}