You are here

protected function NodeStatisticsDatabaseStorage::getRequestTime in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/statistics/src/NodeStatisticsDatabaseStorage.php \Drupal\statistics\NodeStatisticsDatabaseStorage::getRequestTime()

Get current request time.

Return value

int Unix timestamp for current server request time.

1 call to NodeStatisticsDatabaseStorage::getRequestTime()
NodeStatisticsDatabaseStorage::resetDayCount in core/modules/statistics/src/NodeStatisticsDatabaseStorage.php
Reset the day counter for all entities once every day.

File

core/modules/statistics/src/NodeStatisticsDatabaseStorage.php, line 144

Class

NodeStatisticsDatabaseStorage
Provides the default database storage backend for statistics.

Namespace

Drupal\statistics

Code

protected function getRequestTime() {
  return $this->requestStack
    ->getCurrentRequest()->server
    ->get('REQUEST_TIME');
}