You are here

public function ViewExecutable::getUser in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/ViewExecutable.php \Drupal\views\ViewExecutable::getUser()

Gets the current user.

Views plugins can receive the current user in order to not need dependency injection.

Return value

\Drupal\Core\Session\AccountInterface The current user.

File

core/modules/views/src/ViewExecutable.php, line 2046

Class

ViewExecutable
Represents a view as a whole.

Namespace

Drupal\views

Code

public function getUser() {
  return $this->user;
}