| 1 | <?php |
||
| 17 | class TcaFiles implements LoaderInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Get all the complex data for the loader. |
||
| 21 | * This return value will be cached and stored in the database |
||
| 22 | * There is no file monitoring for this cache. |
||
| 23 | */ |
||
| 24 | public function prepareLoader(Loader $loader, int $type): array |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Run the loading process for the ext_tables.php file. |
||
| 38 | */ |
||
| 39 | public function loadExtensionTables(Loader $loader, array $loaderInformation): void |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Run the loading process for the ext_localconf.php file. |
||
| 45 | */ |
||
| 46 | public function loadExtensionConfiguration(Loader $loader, array $loaderInformation): void |
||
| 49 | } |
||
| 50 |