Problem with additional config files fixed
[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, 2008 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         sprintf("class_%s", $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 = sprintf("%s%s/%s.php",
50                 $cfg->readConfig('application_path'),
51                 $cfg->readConfig('app_name'),
52                 $inc
53         );
54
55         // Does the include file exists?
56         if ((file_exists($fqfn)) && (is_file($fqfn)) && (is_readable($fqfn))) {
57                 // Load it
58                 require_once($fqfn);
59         } elseif ($cfg->readConfig('verbose_level') > 0) {
60                 // File is missing
61                 trigger_error(sprintf("Cannot load application script %s.php! File is missing or read-protected.",
62                         $inc
63                 ));
64         }
65 }
66
67 // [EOF]
68 ?>