More conventions than code added:
[shipsimu.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         "init",                 // The application initializer
33         "loader",               // The application's class loader
34         "debug",                // Some debugging stuff
35         "exceptions",   // The application's own exception handler
36         "starter",              // The application starter (calls entryPoint(), etc.)
37 );
38
39 // Load them all (try only)
40 foreach ($configAppIncludes as $inc) {
41         // Skip starter in test mode
42         if (($inc == "starter") && (defined('TEST'))) {
43                 // Skip it here
44                 continue;
45         }
46
47         // Generate a FQFN for the helper class
48         $fqfn = sprintf("%s%s/%s/%s%s",
49                 PATH,
50                 $cfg->readConfig('application_path'),
51                 $cfg->readConfig('app_name'),
52                 $inc,
53                 $cfg->readConfig('php_extension')
54         );
55
56         // Does the include file exists?
57         if ((file_exists($fqfn)) && (is_file($fqfn)) && (is_readable($fqfn))) {
58                 // Load it
59                 require_once($fqfn);
60         } elseif ($cfg->readConfig('verbose_level') > 0) {
61                 // File is missing
62                 trigger_error(sprintf("Cannot load application script %s! File is missing or read-protected.",
63                         $inc . $cfg->readConfig('php_extension')
64                 ));
65         }
66 }
67
68 // [EOF]
69 ?>