Time.php

Same filename in this branch
  1. 9 core/modules/views/src/Plugin/views/cache/Time.php
Same filename and directory in other branches
  1. 8.9.x core/modules/views/src/Plugin/views/cache/Time.php
  2. 8.9.x core/lib/Drupal/Component/Datetime/Time.php
  3. 10 core/modules/views/src/Plugin/views/cache/Time.php
  4. 10 core/lib/Drupal/Component/Datetime/Time.php
  5. 11.x core/modules/views/src/Plugin/views/cache/Time.php
  6. 11.x core/lib/Drupal/Component/Datetime/Time.php

Namespace

Drupal\Component\Datetime

File

core/lib/Drupal/Component/Datetime/Time.php

View source
<?php

namespace Drupal\Component\Datetime;

use Symfony\Component\HttpFoundation\RequestStack;

/**
 * Provides a class for obtaining system time.
 */
class Time implements TimeInterface {
  
  /**
   * The request stack.
   *
   * @var \Symfony\Component\HttpFoundation\RequestStack
   */
  protected $requestStack;
  
  /**
   * Constructs a Time object.
   *
   * @param \Symfony\Component\HttpFoundation\RequestStack $request_stack
   *   The request stack.
   */
  public function __construct(RequestStack $request_stack) {
    $this->requestStack = $request_stack;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getRequestTime() {
    $request = $this->requestStack
      ->getCurrentRequest();
    if ($request) {
      return $request->server
        ->get('REQUEST_TIME');
    }
    // If this is called prior to the request being pushed to the stack fallback
    // to built-in globals (if available) or the system time.
    return $_SERVER['REQUEST_TIME'] ?? $this->getCurrentTime();
  }
  
  /**
   * {@inheritdoc}
   */
  public function getRequestMicroTime() {
    $request = $this->requestStack
      ->getCurrentRequest();
    if ($request) {
      return $request->server
        ->get('REQUEST_TIME_FLOAT');
    }
    // If this is called prior to the request being pushed to the stack fallback
    // to built-in globals (if available) or the system time.
    return $_SERVER['REQUEST_TIME_FLOAT'] ?? $this->getCurrentMicroTime();
  }
  
  /**
   * {@inheritdoc}
   */
  public function getCurrentTime() {
    return time();
  }
  
  /**
   * {@inheritdoc}
   */
  public function getCurrentMicroTime() {
    return microtime(TRUE);
  }

}

Classes

Title Deprecated Summary
Time Provides a class for obtaining system time.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.