| 1 | <?php |
||
| 18 | class ExtensionId implements LoaderInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * Get all the complex data for the loader. |
||
| 22 | * This return value will be cached and stored in the database |
||
| 23 | * There is no file monitoring for this cache. |
||
| 24 | */ |
||
| 25 | public function prepareLoader(Loader $loader, int $type): array |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Run the loading process for the ext_tables.php file. |
||
| 43 | */ |
||
| 44 | public function loadExtensionTables(Loader $loader, array $loaderInformation): void |
||
| 47 | |||
| 48 | /** |
||
| 49 | * Run the loading process for the ext_localconf.php file. |
||
| 50 | * |
||
| 51 | * @internal param \HDNET\Autoloader\Loader $autoLoader |
||
| 52 | */ |
||
| 53 | public function loadExtensionConfiguration(Loader $loader, array $loaderInformation): void |
||
| 59 | } |
||
| 60 |