| Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-extbase/Classes/Property/TypeConverter/ |
| Current File : /var/www/surf/TYPO3/vendor/typo3/cms-extbase/Classes/Property/TypeConverter/FolderConverter.php |
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Extbase\Property\TypeConverter;
use TYPO3\CMS\Core\Resource\ResourceInterface;
use TYPO3\CMS\Extbase\Domain\Model\Folder;
/**
* Converter which transforms simple types to \TYPO3\CMS\Extbase\Domain\Model\Folder.
*
* @internal
*/
class FolderConverter extends AbstractFileFolderConverter
{
/**
* @var string[]
* @deprecated will be removed in TYPO3 v13.0, as this is defined in Services.yaml.
*/
protected $sourceTypes = ['string'];
/**
* @var string
* @deprecated will be removed in TYPO3 v13.0, as this is defined in Services.yaml.
*/
protected $targetType = Folder::class;
/**
* @var string
*/
protected $expectedObjectType = \TYPO3\CMS\Core\Resource\Folder::class;
/**
* @param string $source
* @return \TYPO3\CMS\Core\Resource\Folder
*/
protected function getOriginalResource($source): ?ResourceInterface
{
return $this->fileFactory->getFolderObjectFromCombinedIdentifier($source);
}
}