protected function AliasManager::getRequestTime in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Path/AliasManager.php \Drupal\Core\Path\AliasManager::getRequestTime()
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 301 - Contains \Drupal\Core\Path\AliasManager.
Class
- AliasManager
- The default alias manager implementation.
Namespace
Drupal\Core\PathCode
protected function getRequestTime() {
return defined('REQUEST_TIME') ? REQUEST_TIME : (int) $_SERVER['REQUEST_TIME'];
}