mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
36 lines
905 B
PHP
36 lines
905 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Eager Addons
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Eager loaded addons are registered first and can be defined
|
|
| here by specifying their relative path to the addon's root.
|
|
|
|
|
*/
|
|
|
|
'eager' => [
|
|
'core/anomaly/settings-module',
|
|
'core/anomaly/preferences-module'
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Deferred Addons
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Deferred addons are registered last and can be defined
|
|
| here by specifying their relative path to the addon's root.
|
|
|
|
|
*/
|
|
|
|
'deferred' => [
|
|
'core/anomaly/pages-module',
|
|
'core/anomaly/redirects-module'
|
|
]
|
|
|
|
];
|