File::setFileUri

public File::setFileUri($uri)

Sets the URI of the file.

Parameters

string $uri: The URI of the file, e.g. public://directory/file.jpg. Does not change the location of the file.

Overrides FileInterface::setFileUri

File

core/modules/file/src/Entity/File.php, line 64

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

public function setFileUri($uri) {
  $this->get('uri')->value = $uri;
}
doc_Drupal
2016-10-29 09:13:16
Comments
Leave a Comment

Please login to continue.