Status.php

Same filename in this branch
  1. 11.x core/modules/media/src/Plugin/views/filter/Status.php
  2. 11.x core/modules/file/src/Plugin/views/filter/Status.php
Same filename 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. 10 core/modules/media/src/Plugin/views/filter/Status.php
  8. 10 core/modules/file/src/Plugin/views/filter/Status.php
  9. 10 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;

/**
 * Filters out unpublished content if the current user cannot view it.
 *
 * @ingroup views_filter_handlers
 */
class Status extends FilterPluginBase {
    
    /**
     * {@inheritdoc}
     */
    public function adminSummary() {
    }
    
    /**
     * {@inheritdoc}
     */
    protected function operatorForm(&$form, FormStateInterface $form_state) {
    }
    
    /**
     * {@inheritdoc}
     */
    public function canExpose() {
        return FALSE;
    }
    
    /**
     * {@inheritdoc}
     */
    public function query() {
        if ($this->moduleHandler
            ->hasImplementations('node_grants')) {
            return;
        }
        $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 Filters out unpublished content if the current user cannot view it.

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