0
0
This repository has been archived on 2020-11-15. You can view files and clone it, but cannot push or open issues or pull requests.
OpenShorte.old/functions.php
Bryan b21dd0518d
Website refactored
Prepared the website structure for the new layout
2019-05-29 19:03:06 +02:00

9 lines
321 B
PHP

<?php
require_once ( 'lib/php/classes/Database.php' );
function load_config ( ) : array {
$config = file_get_contents ( 'config.json' );
$config = json_decode ( $config, true );
$config [ 'installation_path' ] = substr ( $_SERVER [ 'SCRIPT_NAME' ], 0, -10 );
return $config;
}