1 | <?php |
||
19 | class CommandController implements LoaderInterface |
||
20 | { |
||
21 | /** |
||
22 | * Get all the complex data for the loader. |
||
23 | * This return value will be cached and stored in the database |
||
24 | * There is no file monitoring for this cache. |
||
25 | */ |
||
26 | public function prepareLoader(Loader $loader, int $type): array |
||
50 | |||
51 | /** |
||
52 | * Run the loading process for the ext_tables.php file. |
||
53 | */ |
||
54 | public function loadExtensionTables(Loader $loader, array $loaderInformation): void |
||
57 | |||
58 | /** |
||
59 | * Run the loading process for the ext_localconf.php file. |
||
60 | */ |
||
61 | public function loadExtensionConfiguration(Loader $loader, array $loaderInformation): void |
||
67 | } |
||
68 |