You are here

function ViewsDependentFilter::valueForm in Views Dependent Filters 8

Options form subform for setting options.

This should be overridden by all child classes and it must define $form['value']

Overrides FilterPluginBase::valueForm

See also

buildOptionsForm()

File

src/Plugin/views/filter/ViewsDependentFilter.php, line 363

Class

ViewsDependentFilter
Filters by given list of related content title options.

Namespace

Drupal\views_dependent_filter\Plugin\views\filter

Code

function valueForm(&$form, FormStateInterface $form_state) {

  // Return nothing for the value form.
  $form['value'] = array();
}