function File::getMimeType
Same name and namespace in other branches
- 8.9.x core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::getMimeType()
- 10 core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::getMimeType()
- 11.x 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 92
Class
- File
- Defines the file entity class.
Namespace
Drupal\file\EntityCode
public function getMimeType() {
return $this->get('filemime')->value;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.