- Issue created by @solideogloria
While writing my own display extender, I found your code and tried using the same method for submitOptionsForm. It didn't work.
/**
* {@inheritdoc}
*/
public function submitOptionsForm(&$form, FormStateInterface $form_state) {
parent::submitOptionsForm($form, $form_state);
if ($form_state->get('section') === 'exposed_block') {
$this->options['exposed_block_exclude'] = $form_state->getValue('exposed_block_exclude');
}
}
Active
1.0
Code