Fixed and continued:
[core.git] / application / tests / starter.php
1 <?php
2 // Import framework stuff
3 use CoreFramework\Configuration\FrameworkConfiguration;
4
5 /**
6  * The application launcher
7  *
8  * @author              Roland Haeder <webmaster@shipsimu.org>
9  * @version             0.0.0
10  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
11  * @license             GNU GPL 3.0 or any newer version
12  * @link                http://www.shipsimu.org
13  *
14  * This program is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation, either version 3 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program. If not, see <http://www.gnu.org/licenses/>.
26  */
27
28 // Is there an application helper instance? We need the method main() for
29 // maining the application
30 $app = call_user_func_array(
31         array(
32                 'CoreFramework\Helper\Application\ApplicationHelper', 'getSelfInstance'
33         ), array()
34 );
35
36 // Some sanity checks
37 if ((empty($app)) || (is_null($app))) {
38         // Something went wrong!
39         ApplicationEntryPoint::app_exit(sprintf("[Main:] The application <span class=\"app_name\">%s</span> could not be launched because the helper class <span class=\"class_name\">%s</span> is not loaded.",
40                 $application,
41                 'CoreFramework\Helper\Application\ApplicationHelper'
42         ));
43 } elseif (!is_object($app)) {
44         // No object!
45         ApplicationEntryPoint::app_exit(sprintf("[Main:] The application <span class=\"app_name\">%s</span> could not be launched because &#39;app&#39; is not an object.",
46                 $application
47         ));
48 } elseif (!method_exists($app, FrameworkConfiguration::getSelfInstance()->getConfigEntry('entry_method'))) {
49         // Method not found!
50         ApplicationEntryPoint::app_exit(sprintf("[Main:] The application <span class=\"app_name\">%s</span> could not be launched because the method <span class=\"method_name\">%s</span> is missing.",
51                 $application,
52                 FrameworkConfiguration::getSelfInstance()->getConfigEntry('entry_method')
53         ));
54 }
55
56 // Call user function
57 call_user_func_array(array($app, FrameworkConfiguration::getSelfInstance()->getConfigEntry('entry_method')), array());