You are here

public function FlagViewsFilter::defineOptions in Flag 8.4

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 BooleanOperator::defineOptions

File

src/Plugin/views/filter/FlagViewsFilter.php, line 18

Class

FlagViewsFilter
Filters content by its flagging status in a view.

Namespace

Drupal\flag\Plugin\views\filter

Code

public function defineOptions() {
  $options = parent::defineOptions();
  $options['value'] = [
    'default' => 1,
  ];
  $options['relationship'] = [
    'default' => 'flag_relationship',
  ];
  return $options;
}