1 | <?php |
||
20 | class TypeConverter implements LoaderInterface |
||
21 | { |
||
22 | /** |
||
23 | * Get all the complex data for the loader. |
||
24 | * This return value will be cached and stored in the database |
||
25 | * There is no file monitoring for this cache. |
||
26 | */ |
||
27 | public function prepareLoader(Loader $loader, int $type): array |
||
46 | |||
47 | /** |
||
48 | * Run the loading process for the ext_tables.php file. |
||
49 | */ |
||
50 | public function loadExtensionTables(Loader $autoLoader, array $loaderInformation): void |
||
53 | |||
54 | /** |
||
55 | * Run the loading process for the ext_localconf.php file. |
||
56 | */ |
||
57 | public function loadExtensionConfiguration(Loader $autoLoader, array $loaderInformation): void |
||
63 | } |
||
64 |