You are here

protected function FormBase::currentUser in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Form/FormBase.php \Drupal\Core\Form\FormBase::currentUser()

Gets the current user.

Return value

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

12 calls to FormBase::currentUser()
AccountForm::form in core/modules/user/src/AccountForm.php
Gets the actual form array to be built.
BlockContentForm::form in core/modules/block_content/src/BlockContentForm.php
Gets the actual form array to be built.
BookOutlineForm::form in core/modules/book/src/Form/BookOutlineForm.php
Gets the actual form array to be built.
MessageForm::form in core/modules/contact/src/MessageForm.php
Gets the actual form array to be built.
MessageForm::save in core/modules/contact/src/MessageForm.php
Form submission handler for the 'save' action.

... See full list

File

core/lib/Drupal/Core/Form/FormBase.php, line 179
Contains \Drupal\Core\Form\FormBase.

Class

FormBase
Provides a base class for forms.

Namespace

Drupal\Core\Form

Code

protected function currentUser() {
  return \Drupal::currentUser();
}