‪TYPO3CMS  11.5
FolderLinkHandler.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
24 
31 {
36  protected ‪$baseUrn = 't3://folder';
37 
42  protected ‪$resourceFactory;
43 
51  public function ‪asString(array $parameters): string
52  {
53  // the magic with prepending slash if it is missing will not work on windows
54  return $this->baseUrn . '?storage=' . $parameters['folder']->getStorage()->getUid() .
55  '&identifier=' . urlencode('/' . ltrim($parameters['folder']->getIdentifier(), '/'));
56  }
57 
65  public function ‪resolveHandlerData(array $data): array
66  {
67  $combinedIdentifier = ($data['storage'] ?? '0') . ':' . $data['identifier'];
68  try {
69  $folder = $this->‪getResourceFactory()->‪getFolderObjectFromCombinedIdentifier($combinedIdentifier);
71  $folder = null;
72  }
73  return ['folder' => $folder];
74  }
75 
81  protected function ‪getResourceFactory(): ‪ResourceFactory
82  {
83  if (!$this->resourceFactory) {
84  $this->resourceFactory = GeneralUtility::makeInstance(ResourceFactory::class);
85  }
87  }
88 }
‪TYPO3\CMS\Core\Resource\Exception\InsufficientFolderAccessPermissionsException
Definition: InsufficientFolderAccessPermissionsException.php:23
‪TYPO3\CMS\Core\Resource\ResourceFactory\getFolderObjectFromCombinedIdentifier
‪Folder getFolderObjectFromCombinedIdentifier($identifier)
Definition: ResourceFactory.php:347
‪TYPO3\CMS\Core\Resource\ResourceFactory
Definition: ResourceFactory.php:41
‪TYPO3\CMS\Core\Resource\Exception\FolderDoesNotExistException
Definition: FolderDoesNotExistException.php:21
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:50