You are here

protected function OtherView::defineOptions in OtherView Filter 8

Information about options for all kinds of purposes will be held here.


'option_name' => array(
 - 'default' => default value,
 - 'contains' => (optional) array of items this contains, with its own
     defaults, etc. If contains is set, the default will be ignored and
     assumed to be array().
 ),

Return value

array Returns the options of this handler/plugin.

Overrides InOperator::defineOptions

File

src/Plugin/views/filter/OtherView.php, line 75

Class

OtherView
Filter content by other view results set.

Namespace

Drupal\other_view_filter\Plugin\views\filter

Code

protected function defineOptions() {
  $options = parent::defineOptions();

  // Set "not in" operator to have usual use case selected by default.
  $options['operator']['default'] = 'not in';
  $options['inherit_contextual_filters'] = [
    'default' => FALSE,
  ];
  return $options;
}