mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 09:03:49 +00:00
So, please find in this set numerous small changes which eliminate numerous php warning messages. Also, a small bug fix in an sql statistics routine, naming a count(*) field as count, so displaying correct detail. If any of the proposed changes are omitted, the relevant page will experience php warnings. There are no doubt fusionpbx pages I've yet to visit that still generate warnings, this set is nearly certainly not comprehensive.
83 lines
2.5 KiB
PHP
83 lines
2.5 KiB
PHP
<?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
|
|
if (file_exists("/etc/fusionpbx/config.php")) {
|
|
include "/etc/fusionpbx/config.php";
|
|
}
|
|
elseif (file_exists("/usr/local/etc/fusionpbx/config.php")) {
|
|
include "/usr/local/etc/fusionpbx/config.php";
|
|
}
|
|
elseif (file_exists("resources/config.php")) {
|
|
include "resources/config.php";
|
|
}
|
|
else {
|
|
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();
|
|
|
|
//define variable(s)
|
|
$default_login = false; //used in the themes
|
|
|
|
//additional includes
|
|
require_once "resources/php.php";
|
|
require "resources/pdo.php";
|
|
require_once "resources/functions.php";
|
|
require_once "resources/switch.php";
|
|
|
|
//change language on the fly - for translate tool (if available)
|
|
if (isset($_REQUEST['view_lang_code']) && ($_REQUEST['view_lang_code']) != '') {
|
|
$_SESSION['domain']['language']['code'] = $_REQUEST['view_lang_code'];
|
|
}
|
|
?>
|