function File::setFileUri

Same name and namespace in other branches
  1. 8.9.x core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::setFileUri()
  2. 10 core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::setFileUri()
  3. 11.x core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::setFileUri()

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 76

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

public function setFileUri($uri) {
    $this->get('uri')->value = $uri;
}

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