class RemoteFileInfo

Provides the locale remote file information.

Value object of file data with the following properties:

  • lastModified: Last modified timestamp of the translation file.
  • (optional) location: The location of the translation file. It is only set when a redirect (301) has occurred.
  • status: RemoteFileStatus enum
    • ::Success if the request was successful
    • ::Missing if a 404 occurred
    • ::Error if an exception other than 404 is encountered

Hierarchy

Expanded class hierarchy of RemoteFileInfo

File

core/modules/locale/src/File/RemoteFileInfo.php, line 17

Namespace

Drupal\locale\File
View source
class RemoteFileInfo {
  
  /**
   * The status of the file check.
   *
   * @var \Drupal\locale\File\RemoteFileStatus|null
   */
  public ?RemoteFileStatus $status;
  
  /**
   * The file uri if a redirect occurred.
   *
   * @var string|null
   */
  public ?string $location = NULL;
  
  /**
   * When the translation was last modified.
   *
   * @var int|null
   */
  public ?int $lastModified = NULL;

}

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