protected property Comment::$filters

Set default values for the filters.

Overrides WizardPluginBase::$filters

File

drupal/core/modules/comment/lib/Drupal/comment/Plugin/views/wizard/Comment.php, line 53
Definition of Drupal\node\Plugin\views\wizard\Comment.

Class

Comment
Tests creating comment views with the wizard.

Namespace

Drupal\comment\Plugin\views\wizard

Code

protected $filters = array(
  'status' => array(
    'value' => TRUE,
    'table' => 'comment',
    'field' => 'status',
  ),
  'status_node' => array(
    'value' => TRUE,
    'table' => 'node',
    'field' => 'status',
    'relationship' => 'nid',
  ),
);