You are here

protected property Node::$filters in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/node/src/Plugin/views/wizard/Node.php \Drupal\node\Plugin\views\wizard\Node::filters

Set default values for the filters.

Overrides WizardPluginBase::$filters

File

core/modules/node/src/Plugin/views/wizard/Node.php, line 36
Contains \Drupal\node\Plugin\views\wizard\Node.

Class

Node
Tests creating node views with the wizard.

Namespace

Drupal\node\Plugin\views\wizard

Code

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