You are here

function EntityString::buildOptionsForm in EntityFieldQuery Views Backend 8

Build the options form.

Overrides String::buildOptionsForm

File

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

Class

EntityString
String Argument handler for entity properties.

Namespace

Drupal\efq_views\Plugin\views\argument

Code

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

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