You are here

public function HistoryUserTimestamp::query in Drupal 9

Same name in this branch
  1. 9 core/modules/history/src/Plugin/views/filter/HistoryUserTimestamp.php \Drupal\history\Plugin\views\filter\HistoryUserTimestamp::query()
  2. 9 core/modules/history/src/Plugin/views/field/HistoryUserTimestamp.php \Drupal\history\Plugin\views\field\HistoryUserTimestamp::query()
Same name and namespace in other branches
  1. 8 core/modules/history/src/Plugin/views/field/HistoryUserTimestamp.php \Drupal\history\Plugin\views\field\HistoryUserTimestamp::query()

Called to add the field to a query.

Overrides FieldPluginBase::query

File

core/modules/history/src/Plugin/views/field/HistoryUserTimestamp.php, line 73

Class

HistoryUserTimestamp
Field handler to display the marker for new content.

Namespace

Drupal\history\Plugin\views\field

Code

public function query() {

  // Only add ourselves to the query if logged in.
  if (\Drupal::currentUser()
    ->isAnonymous()) {
    return;
  }
  parent::query();
}