class Current

Same name and namespace in other branches
  1. 11.x core/modules/user/src/Plugin/views/filter/Current.php \Drupal\user\Plugin\views\filter\Current

Filter handler for the current user.

Plugin annotation

@ViewsFilter("user_current");

Hierarchy

Expanded class hierarchy of Current

Related topics

10 string references to 'Current'
d6_custom_block_translation.yml in core/modules/content_translation/migrations/d6_custom_block_translation.yml
core/modules/content_translation/migrations/d6_custom_block_translation.yml
d6_menu_links_translation.yml in core/modules/content_translation/migrations/d6_menu_links_translation.yml
core/modules/content_translation/migrations/d6_menu_links_translation.yml
d6_taxonomy_term_localized_translation.yml in core/modules/content_translation/migrations/d6_taxonomy_term_localized_translation.yml
core/modules/content_translation/migrations/d6_taxonomy_term_localized_translation.yml
d7_custom_block_translation.yml in core/modules/content_translation/migrations/d7_custom_block_translation.yml
core/modules/content_translation/migrations/d7_custom_block_translation.yml
d7_menu_links_translation.yml in core/modules/content_translation/migrations/d7_menu_links_translation.yml
core/modules/content_translation/migrations/d7_menu_links_translation.yml

... See full list

File

core/modules/user/src/Plugin/views/filter/Current.php, line 16

Namespace

Drupal\user\Plugin\views\filter
View source
class Current extends BooleanOperator {
  
  /**
   * {@inheritdoc}
   */
  public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL) {
    parent::init($view, $display, $options);
    $this->value_value = $this->t('Is the logged in user');
  }
  public function query() {
    $this->ensureMyTable();
    $field = $this->tableAlias . '.' . $this->realField . ' ';
    $or = $this->view->query
      ->getConnection()
      ->condition('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
      ->addWhere($this->options['group'], $or);
  }
  
  /**
   * {@inheritdoc}
   */
  public function getCacheContexts() {
    $contexts = parent::getCacheContexts();
    // This filter depends on the current user.
    $contexts[] = 'user';
    return $contexts;
  }

}

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