TYPO3 CMS  TYPO3_7-6
FileInfo.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
17 
21 class FileInfo extends \SplFileInfo implements TypeInterface
22 {
28  public function getMimeType()
29  {
30  $mimeType = false;
31  if ($this->isFile()) {
32  $fileExtensionToMimeTypeMapping = $GLOBALS['TYPO3_CONF_VARS']['SYS']['FileInfo']['fileExtensionToMimeType'];
33  $lowercaseFileExtension = strtolower($this->getExtension());
34  if (!empty($fileExtensionToMimeTypeMapping[$lowercaseFileExtension])) {
35  $mimeType = $fileExtensionToMimeTypeMapping[$lowercaseFileExtension];
36  } else {
37  if (function_exists('finfo_file')) {
38  $fileInfo = new \finfo();
39  $mimeType = $fileInfo->file($this->getPathname(), FILEINFO_MIME_TYPE);
40  } elseif (function_exists('mime_content_type')) {
41  $mimeType = mime_content_type($this->getPathname());
42  }
43  }
44  }
45 
46  if (isset($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS'][\TYPO3\CMS\Core\Type\File\FileInfo::class]['mimeTypeGuessers'])
47  && is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS'][\TYPO3\CMS\Core\Type\File\FileInfo::class]['mimeTypeGuessers'])
48  ) {
49  foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS'][\TYPO3\CMS\Core\Type\File\FileInfo::class]['mimeTypeGuessers'] as $mimeTypeGuesser) {
50  $hookParameters = [
51  'mimeType' => &$mimeType
52  ];
53 
55  $mimeTypeGuesser,
56  $hookParameters,
57  $this
58  );
59  }
60  }
61 
62  return $mimeType;
63  }
64 }
static callUserFunction($funcName, &$params, &$ref, $checkPrefix='', $errorMode=0)
if(TYPO3_MODE==='BE') $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tsfebeuserauth.php']['frontendEditingController']['default']