loadController() is now more generic (TODO: check that all other apps works)
[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, 2009 Core Developer Team
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 // Try to load these includes in the given order
26 $configAppIncludes = array(
27         'class_' . FrameworkConfiguration::getInstance()->readConfig('app_helper_class'), // The ApplicationHelper class
28         'config',               // The application's own configuration
29         'data',                 // Application data
30         'init',                 // The application initializer
31         'loader',               // The application's class loader
32         'debug',                // Some debugging stuff
33         'exceptions',   // The application's own exception handler
34         'starter',              // The application starter (calls entryPoint(), etc.)
35 );
36
37 // Load them all (try only)
38 foreach ($configAppIncludes as $appInc) {
39         // Skip starter in test mode
40         if (($appInc == 'starter') && (defined('TEST'))) {
41                 // Skip it here
42                 continue;
43         }
44
45         // Generate a FQFN for the helper class
46         $appFqFn = FrameworkConfiguration::getInstance()->readConfig('application_path') . FrameworkConfiguration::getInstance()->readConfig('app_name') . '/' . $appInc . '.php';
47
48         // Does the include file exists?
49         if ((file_exists($appFqFn)) && (is_file($appFqFn)) && (is_readable($appFqFn))) {
50                 // Load it
51                 //* DEBUG: */ print basename(__FILE__)."[".__LINE__."]: Loading ".basename($appFqFn)." - START\n";
52                 require($appFqFn);
53                 //* DEBUG: */ print basename(__FILE__)."[".__LINE__."]: Loading ".basename($appFqFn)." - END\n";
54         } elseif (FrameworkConfiguration::getInstance()->readConfig('verbose_level') > 0) {
55                 // File is missing
56                 trigger_error(sprintf("Cannot load application script %s.php! File is missing or read-protected.",
57                         $appInc
58                 ));
59         }
60 }
61
62 // Remove variables from namespace, which we don't need
63 unset($appInc, $configAppIncludes, $appFqFn);
64
65 // [EOF]
66 ?>