Core/Application/Config/config.main.php
Abel Hoogeveen 2cbc431283 Implemented the first extension: the Encryption extension.
The Encryption Library provides two-way data encryption. To do so in a cryptographically secure way, it utilizes one of multple PHP extensions.
2016-05-13 22:52:14 +02:00

13 lines
256 B
PHP

<?php
return array(
'SITE_URL' => '',
'SITE_DOMAIN' => '',
'SERVER_NAME' => '',
'SITE_LOGO_URL' => '',
'administrator_mail' => '',
'default_controller' => 'standard',
'default_function' => 'index',
'application_library_prefix' => 'MY_'
);