2012-06-04 16:58:40 +02:00
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
FusionPBX
|
|
|
|
|
Version: MPL 1.1
|
|
|
|
|
|
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
|
1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
http://www.mozilla.org/MPL/
|
|
|
|
|
|
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
|
for the specific language governing rights and limitations under the
|
|
|
|
|
License.
|
|
|
|
|
|
|
|
|
|
The Original Code is FusionPBX
|
|
|
|
|
|
|
|
|
|
The Initial Developer of the Original Code is
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2012
|
|
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
2014-01-19 02:30:10 +01:00
|
|
|
|
|
|
|
|
//ensure that $_SERVER["DOCUMENT_ROOT"] is defined
|
|
|
|
|
include "root.php";
|
|
|
|
|
|
|
|
|
|
//find and include the config.php file
|
2017-08-02 18:45:35 +02:00
|
|
|
$config_exists = false;
|
2014-01-19 02:30:10 +01:00
|
|
|
if (file_exists("/etc/fusionpbx/config.php")) {
|
2016-05-05 21:22:08 +02:00
|
|
|
$config_exists = true;
|
2014-01-19 02:30:10 +01:00
|
|
|
include "/etc/fusionpbx/config.php";
|
|
|
|
|
}
|
|
|
|
|
elseif (file_exists("/usr/local/etc/fusionpbx/config.php")) {
|
2016-05-05 21:22:08 +02:00
|
|
|
$config_exists = true;
|
2014-01-19 02:30:10 +01:00
|
|
|
include "/usr/local/etc/fusionpbx/config.php";
|
|
|
|
|
}
|
2016-05-05 22:18:59 +02:00
|
|
|
elseif (file_exists($_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/resources/config.php")) {
|
2016-05-05 21:22:08 +02:00
|
|
|
$config_exists = true;
|
2014-01-19 02:30:10 +01:00
|
|
|
include "resources/config.php";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//class auto loader
|
2016-04-26 03:19:58 +02:00
|
|
|
if (!class_exists('auto_loader')) {
|
2014-12-24 07:36:09 +01:00
|
|
|
class auto_loader {
|
|
|
|
|
public function __construct() {
|
|
|
|
|
spl_autoload_register(array($this, 'loader'));
|
|
|
|
|
}
|
|
|
|
|
private function loader($class_name) {
|
2015-05-12 20:11:05 +02:00
|
|
|
//use glob to get classes (note: GLOB_BRACE doesn't work on some systems)
|
2015-05-13 06:37:36 +02:00
|
|
|
$results_1 = glob($_SERVER["DOCUMENT_ROOT"] . PROJECT_PATH . "/*/*/resources/classes/".$class_name.".php");
|
|
|
|
|
$results_2 = glob($_SERVER["DOCUMENT_ROOT"] . PROJECT_PATH . "/resources/classes/".$class_name.".php");
|
|
|
|
|
$results = array_merge((array)$results_1,(array)$results_2);
|
|
|
|
|
unset($results_1, $results_2);
|
2014-08-19 11:16:01 +02:00
|
|
|
|
2014-12-24 07:36:09 +01:00
|
|
|
//include the class
|
|
|
|
|
foreach ($results as &$class_file) {
|
|
|
|
|
if (!class_exists($class_name)) {
|
|
|
|
|
include $class_file;
|
|
|
|
|
}
|
2014-03-04 17:48:59 +01:00
|
|
|
}
|
2014-12-24 07:36:09 +01:00
|
|
|
unset($results);
|
|
|
|
|
}
|
2014-01-19 02:30:10 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$autoload = new auto_loader();
|
|
|
|
|
|
|
|
|
|
//additional includes
|
|
|
|
|
require_once "resources/php.php";
|
|
|
|
|
require_once "resources/functions.php";
|
2016-05-05 21:22:08 +02:00
|
|
|
if ($config_exists) {
|
|
|
|
|
require "resources/pdo.php";
|
2020-11-03 20:16:00 +01:00
|
|
|
if (file_exists("resources/switch.php")) {
|
|
|
|
|
require_once "resources/switch.php";
|
|
|
|
|
}
|
2016-05-05 21:22:08 +02:00
|
|
|
}
|
2015-01-18 08:54:19 +01:00
|
|
|
|
|
|
|
|
//change language on the fly - for translate tool (if available)
|
2016-04-26 03:19:58 +02:00
|
|
|
if (isset($_REQUEST['view_lang_code']) && ($_REQUEST['view_lang_code']) != '') {
|
2015-01-18 08:54:19 +01:00
|
|
|
$_SESSION['domain']['language']['code'] = $_REQUEST['view_lang_code'];
|
|
|
|
|
}
|
2016-04-26 03:19:58 +02:00
|
|
|
?>
|