‪TYPO3CMS  10.4
TaskTypeRegistry.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
21 
26 {
30  protected ‪$registeredTaskTypes = [];
31 
35  public function ‪__construct()
36  {
37  $this->registeredTaskTypes = ‪$GLOBALS['TYPO3_CONF_VARS']['SYS']['fal']['processingTaskTypes'];
38  }
39 
46  protected function ‪getClassForTaskType($taskType)
47  {
48  return $this->registeredTaskTypes[$taskType] ?? null;
49  }
50 
58  public function ‪getTaskForType($taskType, ‪ProcessedFile $processedFile, array $processingConfiguration)
59  {
60  $taskClass = $this->‪getClassForTaskType($taskType);
61  if ($taskClass === null) {
62  throw new \RuntimeException('Unknown processing task "' . $taskType . '"', 1476049767);
63  }
64 
65  return GeneralUtility::makeInstance($taskClass, $processedFile, $processingConfiguration);
66  }
67 }
‪TYPO3\CMS\Core\Resource\Processing\TaskInterface
Definition: TaskInterface.php:33
‪TYPO3\CMS\Core\Resource\Processing\TaskTypeRegistry
Definition: TaskTypeRegistry.php:26
‪TYPO3\CMS\Core\Resource\Processing
Definition: AbstractGraphicalTask.php:16
‪TYPO3\CMS\Core\Resource\Processing\TaskTypeRegistry\__construct
‪__construct()
Definition: TaskTypeRegistry.php:34
‪TYPO3\CMS\Core\Resource\ProcessedFile
Definition: ProcessedFile.php:44
‪TYPO3\CMS\Core\Resource\Processing\TaskTypeRegistry\$registeredTaskTypes
‪array $registeredTaskTypes
Definition: TaskTypeRegistry.php:29
‪TYPO3\CMS\Core\SingletonInterface
Definition: SingletonInterface.php:23
‪$GLOBALS
‪$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['adminpanel']['modules']
Definition: ext_localconf.php:5
‪TYPO3\CMS\Core\Resource\Processing\TaskTypeRegistry\getClassForTaskType
‪string getClassForTaskType($taskType)
Definition: TaskTypeRegistry.php:45
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:46
‪TYPO3\CMS\Core\Resource\Processing\TaskTypeRegistry\getTaskForType
‪TaskInterface getTaskForType($taskType, ProcessedFile $processedFile, array $processingConfiguration)
Definition: TaskTypeRegistry.php:57