You are here

protected function AliasManager::getRequestTime in Drupal 8

Wrapper method for REQUEST_TIME constant.

Return value

int

1 call to AliasManager::getRequestTime()
AliasManager::writeCache in core/lib/Drupal/Core/Path/AliasManager.php
Cache an array of the paths available on each page. We assume that aliases will be needed for the majority of these paths during subsequent requests, and load them in a single query during path alias lookup.

File

core/lib/Drupal/Core/Path/AliasManager.php, line 339

Class

AliasManager
The default alias manager implementation.

Namespace

Drupal\Core\Path

Code

protected function getRequestTime() {
  return defined('REQUEST_TIME') ? REQUEST_TIME : (int) $_SERVER['REQUEST_TIME'];
}