You are here

public function File::getSize in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::getSize()

Returns the size of the file.

Return value

string The size of the file in bytes.

Overrides FileInterface::getSize

File

core/modules/file/src/Entity/File.php, line 95
Contains \Drupal\file\Entity\File.

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

public function getSize() {
  return $this
    ->get('filesize')->value;
}