1 | <?php |
||
20 | class SymfonyCommandController implements LoaderInterface |
||
21 | { |
||
22 | /** |
||
23 | * Get all the complex data and information for the loader. |
||
24 | * This return value will be cached and stored in the core_cache of TYPO3. |
||
25 | * There is no file monitoring for this cache. |
||
26 | * |
||
27 | * @param Loader $loader |
||
28 | * @param int $type |
||
29 | * |
||
30 | * @return array |
||
31 | * |
||
32 | * @see https://docs.typo3.org/typo3cms/InsideTypo3Reference/CoreArchitecture/BackendModules/CliScripts/Index.html |
||
33 | */ |
||
34 | public function prepareLoader(Loader $loader, int $type): array |
||
80 | |||
81 | /** |
||
82 | * Run the loading process for the ext_tables.php file. |
||
83 | * |
||
84 | * @param Loader $loader |
||
85 | * @param array $loaderInformation |
||
86 | */ |
||
87 | public function loadExtensionTables(Loader $loader, array $loaderInformation) |
||
90 | |||
91 | /** |
||
92 | * Run the loading process for the ext_localconf.php file. |
||
93 | * |
||
94 | * @param Loader $loader |
||
95 | * @param array $loaderInformation |
||
96 | */ |
||
97 | public function loadExtensionConfiguration(Loader $loader, array $loaderInformation) |
||
100 | } |
||
101 |