You are here

protected property Users::$filters in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/user/src/Plugin/views/wizard/Users.php \Drupal\user\Plugin\views\wizard\Users::filters

Set default values for the filters.

Overrides WizardPluginBase::$filters

File

core/modules/user/src/Plugin/views/wizard/Users.php, line 35
Contains \Drupal\user\Plugin\views\wizard\Users.

Class

Users
Tests creating user views with the wizard.

Namespace

Drupal\user\Plugin\views\wizard

Code

protected $filters = array(
  'status' => array(
    'value' => TRUE,
    'table' => 'users_field_data',
    'field' => 'status',
    'plugin_id' => 'boolean',
    'entity_type' => 'user',
    'entity_field' => 'status',
  ),
);