You are here

function efq_views_handler_argument_property_string::options_form in EntityFieldQuery Views Backend 7

Build the options form.

Overrides views_handler_argument_string::options_form

File

handlers/efq_views_handler_argument_property_string.inc, line 7

Class

efq_views_handler_argument_property_string
String Argument handler for entity properties.

Code

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

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