Current.php

Definition of views_handler_filter_user_current.

Namespace

Drupal\user\Plugin\views\filter

File

drupal/core/modules/user/lib/Drupal/user/Plugin/views/filter/Current.php
View source
<?php

/**
 * @file
 * Definition of views_handler_filter_user_current.
 */
namespace Drupal\user\Plugin\views\filter;

use Drupal\Core\Annotation\Plugin;
use Drupal\views\ViewExecutable;
use Drupal\views\Plugin\views\filter\BooleanOperator;

/**
 * Filter handler for the current user.
 *
 * @ingroup views_filter_handlers
 *
 * @Plugin(
 *   id = "user_current",
 *   module = "user"
 * )
 */
class Current extends BooleanOperator {

  /**
   * Overrides Drupal\views\Plugin\views\filter\BooleanOperator::init().
   */
  public function init(ViewExecutable $view, &$options) {
    parent::init($view, $options);
    $this->value_value = t('Is the logged in user');
  }
  public function query() {
    $this
      ->ensureMyTable();
    $field = $this->tableAlias . '.' . $this->realField . ' ';
    $or = db_or();
    if (empty($this->value)) {
      $or
        ->condition($field, '***CURRENT_USER***', '<>');
      if ($this->accept_null) {
        $or
          ->isNull($field);
      }
    }
    else {
      $or
        ->condition($field, '***CURRENT_USER***', '=');
    }
    $this->query
      ->add_where($this->options['group'], $or);
  }

}

Classes

Namesort descending Description
Current Filter handler for the current user.