public function Status::query

Add this filter to the query.

Due to the nature of fapi, the value and the operator have an unintended level of indirection. You will find them in $this->operator and $this->value respectively.

Overrides FilterPluginBase::query

File

drupal/core/modules/node/lib/Drupal/node/Plugin/views/filter/Status.php, line 31
Definition of Drupal\node\Plugins\views\filter\Status.

Class

Status
Filter by published status.

Namespace

Drupal\node\Plugin\views\filter

Code

public function query() {
  $table = $this
    ->ensureMyTable();
  $this->query
    ->add_where_expression($this->options['group'], "{$table}.status = 1 OR ({$table}.uid = ***CURRENT_USER*** AND ***CURRENT_USER*** <> 0 AND ***VIEW_OWN_UNPUBLISHED_NODES*** = 1) OR ***BYPASS_NODE_ACCESS*** = 1");
}