Status.php

Same filename in this branch
  1. 10 core/modules/media/src/Plugin/views/filter/Status.php
  2. 10 core/modules/file/src/Plugin/views/filter/Status.php
Same filename and directory in other branches
  1. 9 core/modules/media/src/Plugin/views/filter/Status.php
  2. 9 core/modules/file/src/Plugin/views/filter/Status.php
  3. 9 core/modules/node/src/Plugin/views/filter/Status.php
  4. 8.9.x core/modules/media/src/Plugin/views/filter/Status.php
  5. 8.9.x core/modules/file/src/Plugin/views/filter/Status.php
  6. 8.9.x core/modules/node/src/Plugin/views/filter/Status.php
  7. 11.x core/modules/media/src/Plugin/views/filter/Status.php
  8. 11.x core/modules/file/src/Plugin/views/filter/Status.php
  9. 11.x core/modules/node/src/Plugin/views/filter/Status.php

Namespace

Drupal\node\Plugin\views\filter

File

core/modules/node/src/Plugin/views/filter/Status.php

View source
<?php

namespace Drupal\node\Plugin\views\filter;

use Drupal\Core\Form\FormStateInterface;
use Drupal\views\Attribute\ViewsFilter;
use Drupal\views\Plugin\views\filter\FilterPluginBase;

/**
 * Filter by published status.
 *
 * @ingroup views_filter_handlers
 */
class Status extends FilterPluginBase {
  public function adminSummary() {
  }
  protected function operatorForm(&$form, FormStateInterface $form_state) {
  }
  public function canExpose() {
    return FALSE;
  }
  public function query() {
    $table = $this->ensureMyTable();
    $snippet = "{$table}.status = 1 OR ({$table}.uid = ***CURRENT_USER*** AND ***CURRENT_USER*** <> 0 AND ***VIEW_OWN_UNPUBLISHED_NODES*** = 1) OR ***BYPASS_NODE_ACCESS*** = 1";
    if ($this->moduleHandler
      ->moduleExists('content_moderation')) {
      $snippet .= ' OR ***VIEW_ANY_UNPUBLISHED_NODES*** = 1';
    }
    $this->query
      ->addWhereExpression($this->options['group'], $snippet);
  }
  
  /**
   * {@inheritdoc}
   */
  public function getCacheContexts() {
    $contexts = parent::getCacheContexts();
    $contexts[] = 'user';
    return $contexts;
  }

}

Classes

Title Deprecated Summary
Status Filter by published status.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.