2018-06-07 10:56:13 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class Config
|
|
|
|
{
|
|
|
|
public $config;
|
|
|
|
|
|
|
|
// Load configuration and upload it to the main class elements
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$ROOT = $_SERVER['DOCUMENT_ROOT'];
|
2018-06-08 18:58:48 +00:00
|
|
|
$config = $ROOT . "/source/config.ini";
|
2018-06-07 10:56:13 +00:00
|
|
|
|
2018-06-08 18:58:48 +00:00
|
|
|
$this->config = parse_ini_file($config, true);
|
2018-06-07 10:56:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getConfig()
|
|
|
|
{
|
|
|
|
return $this->config;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|