005c1e650e694d76d12ab368006fd33d800cbb57
[shipsimu.git] / application / selector / class_ApplicationHelper.php
1 <?php
2 /**
3  * A class holding general data about the application and some methods for
4  * the management including the entry point.
5  *
6  * E.g.:
7  *
8  * index.php?app=my_app
9  *
10  * You need to create a folder in the folder "application" named "my_app"
11  * (without the quotes) and create a include file called
12  * class_ApplicationHelper.php. You have to write the same class for your
13  * application and implement the same interface called ManageableApplication
14  * because this class include file will be searched for.
15  *
16  * It is good when you avoid more GET parameters to keep URLs short and sweet.
17  * But sometimes you need some GET paramerers e.g. for your imprint or info page
18  * or other linked pages which you have to create and state some informations.
19  *
20  * Please remember that this include file is being loaded *before* the class
21  * loader is loading classes from "exceptions", "interfaces" and "main"!
22  *
23  * @author              Roland Haeder <webmaster@ship-simu.org>
24  * @version             0.0.0
25  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, this is free software
26  * @license             GNU GPL 3.0 or any newer version
27  * @link                http://www.ship-simu.org
28  *
29  * This program is free software: you can redistribute it and/or modify
30  * it under the terms of the GNU General Public License as published by
31  * the Free Software Foundation, either version 3 of the License, or
32  * (at your option) any later version.
33  *
34  * This program is distributed in the hope that it will be useful,
35  * but WITHOUT ANY WARRANTY; without even the implied warranty of
36  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
37  * GNU General Public License for more details.
38  *
39  * You should have received a copy of the GNU General Public License
40  * along with this program. If not, see <http://www.gnu.org/licenses/>.
41  */
42 class ApplicationHelper extends BaseApplication implements ManageableApplication, Registerable {
43         /**
44          * The version number of this application
45          */
46         private $appVersion = "";
47
48         /**
49          * The human-readable name for this application
50          */
51         private $appName = "";
52
53         /**
54          * The short uni*-like name of this application
55          */
56         private $shortName = "";
57
58         /**
59          * Name of the master template
60          */
61         private $masterTemplate = "";
62
63         /**
64          * An instance of this class
65          */
66         private static $thisInstance = null;
67
68         /**
69          * Protected constructor
70          *
71          * @return      void
72          */
73         protected function __construct () {
74                 // Call parent constructor
75                 parent::__construct(__CLASS__);
76         }
77
78         /**
79          * Getter for an instance of this class
80          *
81          * @return      $thisInstance           An instance of this class
82          */
83         public final static function getInstance () {
84                 // Is the instance there?
85                 if (is_null(self::$thisInstance)) {
86                         self::$thisInstance = new ApplicationHelper();
87                 }
88
89                 // Return the instance
90                 return self::$thisInstance;
91         }
92
93         /**
94          * Getter for the version number
95          *
96          * @return      $appVersion     The application's version number
97          */
98         public final function getAppVersion () {
99                 return $this->appVersion;
100         }
101
102         /**
103          * Setter for the version number
104          *
105          * @param       $appVersion     The application's version number
106          * @return      void
107          */
108         public final function setAppVersion ($appVersion) {
109                 // Cast and set it
110                 $appVersion = (string) $appVersion;
111                 $this->appVersion = $appVersion;
112         }
113
114         /**
115          * Getter for human-readable name
116          *
117          * @return      $appName        The application's human-readable name
118          */
119         public final function getAppName () {
120                 return $this->appName;
121         }
122
123         /**
124          * Setter for human-readable name
125          *
126          * @param       $appName        The application's human-readable name
127          * @return      void
128          */
129         public final function setAppName ($appName) {
130                 // Cast and set it
131                 $appName = (string) $appName;
132                 $this->appName = $appName;
133         }
134
135         /**
136          * Getter for short uni*-like name
137          *
138          * @return      $shortName      The application's short uni*-like name
139          */
140         public final function getAppShortName () {
141                 return $this->shortName;
142         }
143
144         /**
145          * Setter for short uni*-like name
146          *
147          * @param       $shortName      The application's short uni*-like name
148          * @return      void
149          */
150         public final function setAppShortName ($shortName) {
151                 // Cast and set it
152                 $shortName = (string) $shortName;
153                 $this->shortName = $shortName;
154         }
155
156         /**
157          * Getter for master template name
158          *
159          * @return      $masterTemplate         Name of the master template
160          */
161         public final function getMasterTemplate () {
162                 return $this->masterTemplate;
163         }
164
165         /**
166          * Launcher for the application selector
167          *
168          * @return      void
169          * @see         ApplicationSelector
170          */
171         public final function entryPoint () {
172                 // Get a prepared instance of ApplicationSelector
173                 $selInstance = ApplicationSelector::createApplicationSelector(LanguageSystem::getInstance(), FileIoHandler::getInstance());
174
175                 // Remove the ignore list from the object
176                 $selInstance->removeDirIgnoreList();
177
178                 // Next load all templates for the respective short app names
179                 $selInstance->loadApplicationTemplates();
180
181                 // Then load the selector's own template
182                 $selInstance->loadSelectorTemplate();
183
184                 // Insert all application templates
185                 $selInstance->insertApplicationTemplates();
186         }
187
188         /**
189          * Handle the indexed array of fatal messages and puts them out in an
190          * acceptable fasion
191          *
192          * @param       $messageList    An array of fatal messages
193          * @return      void
194          */
195         public function handleFatalMessages (array $messageList) {
196                 die("<pre>".print_r($messageList, true)."</pre>");
197         }
198
199         /**
200          * Assigns application-depending data
201          *
202          * @param       $templateInstance       An instance of a template engine
203          * @return      void
204          */
205         public function assignExtraTemplateData (CompileableTemplate $templateInstance) {
206                 // Assign charset
207                 $templateInstance->assignConfigVariable('header_charset');
208         }
209 }
210
211 // [EOF]
212 ?>