Abel Hoogeveen
be3c6c87ff
It is now possible to disable the modules and the events system using the config file. This will completely turn the system off. The event system will still load the event classes but it will not send them around.
12 lines
253 B
PHP
12 lines
253 B
PHP
<?php
|
|
|
|
return array(
|
|
'enable_composer' => true,
|
|
'enable_modules' => true,
|
|
'enable_events' => true,
|
|
'composer_autoloader' => '',
|
|
'registry_caching' => false,
|
|
'registry_caching_method' => 'file',
|
|
'registry_caching_time' => 300,
|
|
);
|