public function FileMetadataManager::has in File metadata manager 8
Same name and namespace in other branches
- 8.2 src/FileMetadataManager.php \Drupal\file_mdm\FileMetadataManager::has()
Determines if the URI is currently in use by the manager.
Parameters
string $uri: The URI to a file.
Return value
bool TRUE if the URI is in use, FALSE otherwise.
Overrides FileMetadataManagerInterface::has
File
- src/
FileMetadataManager.php, line 107
Class
- FileMetadataManager
- A service class to provide file metadata.
Namespace
Drupal\file_mdmCode
public function has($uri) {
$hash = $this
->calculateHash($uri);
return $hash ? isset($this->files[$hash]) : NULL;
}