Double->single converted, framework will abort if application is not found
[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 // Cache base path/file here
38 $basePathFile = FrameworkConfiguration::getInstance()->readConfig('application_path') . FrameworkConfiguration::getInstance()->readConfig('app_name');
39
40 // Is the directory there?
41 if (!is_dir($basePathFile)) {
42         // Not found.
43         trigger_error('Application ' . FrameworkConfiguration::getInstance()->readConfig('app_name') . ' not found.');
44 } // END - if
45
46 // Load them all (try only)
47 foreach ($configAppIncludes as $appInc) {
48         // Skip starter in test mode
49         if (($appInc == 'starter') && (defined('TEST'))) {
50                 // Skip it here
51                 continue;
52         }
53
54         // Generate a FQFN for the helper class
55         $appFqFn = $basePathFile . '/' . $appInc . '.php';
56
57         // Does the include file exists?
58         if ((file_exists($appFqFn)) && (is_file($appFqFn)) && (is_readable($appFqFn))) {
59                 // Load it
60                 //* DEBUG: */ print basename(__FILE__)."[".__LINE__."]: Loading ".basename($appFqFn)." - START\n";
61                 require($appFqFn);
62                 //* DEBUG: */ print basename(__FILE__)."[".__LINE__."]: Loading ".basename($appFqFn)." - END\n";
63         } elseif (FrameworkConfiguration::getInstance()->readConfig('verbose_level') > 0) {
64                 // File is missing
65                 trigger_error(sprintf("Cannot load application script %s.php! File is missing or read-protected.",
66                         $appInc
67                 ));
68         }
69 }
70
71 // Remove variables from namespace, which we don't need
72 unset($appInc, $configAppIncludes, $appFqFn, $basePathFile);
73
74 // [EOF]
75 ?>