fusionpbx/resources/require.php

85 lines
2.6 KiB
PHP
Raw Normal View History

<?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>
*/
//ensure that $_SERVER["DOCUMENT_ROOT"] is defined
include "root.php";
//find and include the config.php file
$config_exists = false;
if (file_exists("/etc/fusionpbx/config.php")) {
$config_exists = true;
include "/etc/fusionpbx/config.php";
}
elseif (file_exists("/usr/local/etc/fusionpbx/config.php")) {
$config_exists = true;
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")) {
$config_exists = true;
include "resources/config.php";
}
//class auto loader
if (!class_exists('auto_loader')) {
class auto_loader {
public function __construct() {
spl_autoload_register(array($this, 'loader'));
}
private function loader($class_name) {
//use glob to get classes (note: GLOB_BRACE doesn't work on some systems)
$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);
//include the class
foreach ($results as &$class_file) {
if (!class_exists($class_name)) {
include $class_file;
}
}
unset($results);
}
}
}
$autoload = new auto_loader();
//additional includes
require_once "resources/php.php";
require_once "resources/functions.php";
if ($config_exists) {
require "resources/pdo.php";
if (file_exists("resources/switch.php")) {
require_once "resources/switch.php";
}
}
2015-01-18 08:54:19 +01:00
//change language on the fly - for translate tool (if available)
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'];
}
?>