You are here

public function File::getMimeType in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/http-foundation/File/File.php \Symfony\Component\HttpFoundation\File\File::getMimeType()
  2. 8 core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::getMimeType()
Same name and namespace in other branches
  1. 8.0 core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::getMimeType()

Returns the MIME type of the file.

Return value

string The MIME type of the file, e.g. image/jpeg or text/xml.

Overrides FileInterface::getMimeType

File

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

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

public function getMimeType() {
  return $this
    ->get('filemime')->value;
}