You are here

public function UserController::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/user/src/Controller/UserController.php \Drupal\user\Controller\UserController::__construct()

Constructs a UserController object.

Parameters

\Drupal\Core\Datetime\DateFormatterInterface $date_formatter: The date formatter service.

\Drupal\user\UserStorageInterface $user_storage: The user storage.

\Drupal\user\UserDataInterface $user_data: The user data service.

\Psr\Log\LoggerInterface $logger: A logger instance.

\Drupal\Core\Flood\FloodInterface $flood: The flood service.

File

core/modules/user/src/Controller/UserController.php, line 74

Class

UserController
Controller routines for user routes.

Namespace

Drupal\user\Controller

Code

public function __construct(DateFormatterInterface $date_formatter, UserStorageInterface $user_storage, UserDataInterface $user_data, LoggerInterface $logger, FloodInterface $flood = NULL) {
  $this->dateFormatter = $date_formatter;
  $this->userStorage = $user_storage;
  $this->userData = $user_data;
  $this->logger = $logger;
  if (!$flood) {
    @trigger_error('Calling ' . __METHOD__ . ' without the $flood parameter is deprecated in drupal:8.8.0 and is required in drupal:9.0.0. See https://www.drupal.org/node/1681832', E_USER_DEPRECATED);
    $flood = \Drupal::service('flood');
  }
  $this->flood = $flood;
}