‪TYPO3CMS  9.5
FileMetadataOverlayAspect.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  */
16 
19 
33 {
39  public function ‪languageAndWorkspaceOverlay(\ArrayObject $data)
40  {
41  // Should only be in Frontend, but not in eID context
42  if (!(TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_FE) || isset($_REQUEST['eID'])) {
43  return;
44  }
45  $overlaidMetaData = $data->getArrayCopy();
46  $pageRepository = GeneralUtility::makeInstance(PageRepository::class);
47  $pageRepository->versionOL('sys_file_metadata', $overlaidMetaData);
48  $overlaidMetaData = $pageRepository->getLanguageOverlay(
49  'sys_file_metadata',
50  $overlaidMetaData
51  );
52  if ($overlaidMetaData !== null) {
53  $data->exchangeArray($overlaidMetaData);
54  }
55  }
56 }
‪TYPO3\CMS\Frontend\Aspect\FileMetadataOverlayAspect\languageAndWorkspaceOverlay
‪languageAndWorkspaceOverlay(\ArrayObject $data)
Definition: FileMetadataOverlayAspect.php:39
‪TYPO3\CMS\Frontend\Page\PageRepository
Definition: PageRepository.php:53
‪TYPO3\CMS\Frontend\Aspect\FileMetadataOverlayAspect
Definition: FileMetadataOverlayAspect.php:33
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:45
‪TYPO3\CMS\Frontend\Aspect
Definition: FileMetadataOverlayAspect.php:2