Access.php

Same filename and directory in other branches
  1. 9 core/modules/node/src/Plugin/views/filter/Access.php
  2. 8.9.x core/modules/node/src/Plugin/views/filter/Access.php
  3. 10 core/modules/node/src/Plugin/views/filter/Access.php

Namespace

Drupal\node\Plugin\views\filter

File

core/modules/node/src/Plugin/views/filter/Access.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 node_access records.
 *
 * @ingroup views_filter_handlers
 */
class Access extends FilterPluginBase {
  
  /**
   * {@inheritdoc}
   */
  public function adminSummary() {
  }
  
  /**
   * {@inheritdoc}
   */
  protected function operatorForm(&$form, FormStateInterface $form_state) {
  }
  
  /**
   * {@inheritdoc}
   */
  public function canExpose() {
    return FALSE;
  }
  
  /**
   * See _node_access_where_sql() for a non-views query based implementation.
   */
  public function query() {
    $account = $this->view
      ->getUser();
    if (!$account->hasPermission('bypass node access') && $this->moduleHandler
      ->hasImplementations('node_grants')) {
      $table = $this->ensureMyTable();
      $grants = $this->query
        ->getConnection()
        ->condition('OR');
      foreach (node_access_grants('view', $account) as $realm => $gids) {
        foreach ($gids as $gid) {
          $grants->condition($this->query
            ->getConnection()
            ->condition('AND')
            ->condition($table . '.gid', $gid)
            ->condition($table . '.realm', $realm));
        }
      }
      $this->query
        ->addWhere('AND', $grants);
      $this->query
        ->addWhere('AND', $table . '.grant_view', 1, '>=');
    }
  }
  
  /**
   * {@inheritdoc}
   */
  public function getCacheContexts() {
    $contexts = parent::getCacheContexts();
    $contexts[] = 'user.node_grants:view';
    return $contexts;
  }

}

Classes

Title Deprecated Summary
Access Filter by node_access records.

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