You are here

public function FileMetadata::getLocalTempPath in File metadata manager 8

Same name and namespace in other branches
  1. 8.2 src/FileMetadata.php \Drupal\file_mdm\FileMetadata::getLocalTempPath()

Gets the local filesystem URI to the temporary file.

Return value

string|null The URI, or a local path, of the temporary file.

Overrides FileMetadataInterface::getLocalTempPath

1 call to FileMetadata::getLocalTempPath()
FileMetadata::copyTempToUri in src/FileMetadata.php
Copies the local temporary file to the destination URI.

File

src/FileMetadata.php, line 100

Class

FileMetadata
A file metadata object.

Namespace

Drupal\file_mdm

Code

public function getLocalTempPath() {
  return $this->localTempPath;
}