12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?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 <[email protected]>
- Portions created by the Initial Developer are Copyright (C) 2008-2012
- the Initial Developer. All Rights Reserved.
- Contributor(s):
- Mark J Crane <[email protected]>
- */
- //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";
- }
- 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();
- //define variable(s)
- $default_login = false; //used in the themes
- //additional includes
- require_once "resources/php.php";
- require_once "resources/functions.php";
- if ($config_exists) {
- require "resources/pdo.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'];
- }
- ?>
|