| 1 | <?php |
||
| 18 | class FluidNamespace implements LoaderInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * Get all the complex data and information for the loader. |
||
| 22 | * This return value will be cached and stored in the core_cache of TYPO3. |
||
| 23 | * There is no file monitoring for this cache. |
||
| 24 | */ |
||
| 25 | public function prepareLoader(Loader $loader, int $type): array |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Run the loading process for the ext_tables.php file. |
||
| 40 | */ |
||
| 41 | public function loadExtensionTables(Loader $loader, array $loaderInformation): void |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Run the loading process for the ext_localconf.php file. |
||
| 47 | */ |
||
| 48 | public function loadExtensionConfiguration(Loader $loader, array $loaderInformation): void |
||
| 54 | } |
||
| 55 |