protected function AliasManager::getRequestTime in Drupal 9
Same name and namespace in other branches
- 10 core/modules/path_alias/src/AliasManager.php \Drupal\path_alias\AliasManager::getRequestTime()
Wrapper method for REQUEST_TIME constant.
Return value
int
1 call to AliasManager::getRequestTime()
- AliasManager::writeCache in core/
modules/ path_alias/ src/ 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/
modules/ path_alias/ src/ AliasManager.php, line 298
Class
- AliasManager
- The default alias manager implementation.
Namespace
Drupal\path_aliasCode
protected function getRequestTime() {
return defined('REQUEST_TIME') ? REQUEST_TIME : (int) $_SERVER['REQUEST_TIME'];
}