You are here

function EntityFieldString::buildOptionsForm in EntityFieldQuery Views Backend 8

Build the options form.

Overrides String::buildOptionsForm

File

src/Plugin/views/argument/EntityFieldString.php, line 25
Definition of Drupal\efq_views\Plugin\views\argument\EntityFieldString.

Class

EntityFieldString
String argument handler for fields.

Namespace

Drupal\efq_views\Plugin\views\argument

Code

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

  // We don't support glossary currently.
  unset($form['glossary']);
}