function FormBuilder::currentUser

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Form/FormBuilder.php \Drupal\Core\Form\FormBuilder::currentUser()
  2. 8.9.x core/lib/Drupal/Core/Form/FormBuilder.php \Drupal\Core\Form\FormBuilder::currentUser()
  3. 10 core/lib/Drupal/Core/Form/FormBuilder.php \Drupal\Core\Form\FormBuilder::currentUser()

Gets the current active user.

Return value

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

1 call to FormBuilder::currentUser()
FormBuilder::prepareForm in core/lib/Drupal/Core/Form/FormBuilder.php
Prepares a structured form array.

File

core/lib/Drupal/Core/Form/FormBuilder.php, line 1399

Class

FormBuilder
Provides form building and processing.

Namespace

Drupal\Core\Form

Code

protected function currentUser() {
    if (!$this->currentUser && \Drupal::hasService('current_user')) {
        $this->currentUser = \Drupal::currentUser();
    }
    return $this->currentUser;
}

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