Rewritten a lot double-quotes to single-requotes, removed deprecated exception, some...
[core.git] / inc / selector.php
1 <?php
2 /**
3  * The application selector main include file
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007 - 2009 Roland Haeder, this is free software
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.ship-simu.org
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program. If not, see <http://www.gnu.org/licenses/>.
23  */
24
25 // Get config instance
26 $cfg = FrameworkConfiguration::getInstance();
27
28 // Try to load these includes in the given order
29 $configAppIncludes = array(
30         'class_' . $cfg->readConfig('app_helper_class'), // The ApplicationHelper class
31         'config',               // The application's own configuration
32         'data',                 // Application data
33         'init',                 // The application initializer
34         'loader',               // The application's class loader
35         'debug',                // Some debugging stuff
36         'exceptions',   // The application's own exception handler
37         'starter',              // The application starter (calls entryPoint(), etc.)
38 );
39
40 // Load them all (try only)
41 foreach ($configAppIncludes as $inc) {
42         // Skip starter in test mode
43         if (($inc == 'starter') && (defined('TEST'))) {
44                 // Skip it here
45                 continue;
46         }
47
48         // Generate a FQFN for the helper class
49         $fqfn = $cfg->readConfig('application_path') . $cfg->readConfig('app_name') . '/' . $inc . '.php';
50
51         // Does the include file exists?
52         if ((file_exists($fqfn)) && (is_file($fqfn)) && (is_readable($fqfn))) {
53                 // Load it
54                 require_once($fqfn);
55         } elseif ($cfg->readConfig('verbose_level') > 0) {
56                 // File is missing
57                 trigger_error(sprintf("Cannot load application script %s.php! File is missing or read-protected.",
58                         $inc
59                 ));
60         }
61 }
62
63 // Remove variables from namespace, which we don't need
64 unset($cfg, $inc, $configAppIncludes, $fqfn);
65
66 // [EOF]
67 ?>