You are here

public function Status::query in Views (for Drupal 7) 8.3

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

lib/Views/node/Plugin/views/filter/Status.php, line 31
Definition of Views\node\Plugins\views\filter\Status.

Class

Status
Filter by published status.

Namespace

Views\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");
}