Code merge from latest ship-simu code
[mailer.git] / application / mxchange / 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@mxchange.org>
24  * @version             0.3.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.mxchange.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 BaseFrameworkSystem implements ManageableApplication {
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          * An instance of this class
60          */
61         private static $thisInstance = null;
62
63         /**
64          * Master template
65          */
66         private $masterTemplate = "mxchange_main";
67
68         /**
69          * Private constructor
70          *
71          * @return      void
72          */
73         protected function __construct () {
74                 // Call parent constructor
75                 parent::__construct(__CLASS__);
76
77                 // Set description
78                 $this->setObjectDescription("Application-Helper");
79
80                 // Create an unique ID
81                 $this->createUniqueID();
82
83                 // Tidy up a little
84                 $this->removeSystemArray();
85         }
86
87         /**
88          * Getter for an instance of this class
89          *
90          * @return      $thisInstance           An instance of this class
91          */
92         public final static function getInstance () {
93                 // Is the instance there?
94                 if (is_null(self::$thisInstance)) {
95                         self::$thisInstance = new ApplicationHelper();
96                 }
97
98                 // Return the instance
99                 return self::$thisInstance;
100         }
101
102         /**
103          * Getter for the version number
104          *
105          * @return      $appVersion     The application's version number
106          */
107         public final function getAppVersion () {
108                 return $this->appVersion;
109         }
110
111         /**
112          * Setter for the version number
113          *
114          * @param               $appVersion     The application's version number
115          * @return      void
116          */
117         public final function setAppVersion ($appVersion) {
118                 // Cast and set it
119                 $appVersion = (string) $appVersion;
120                 $this->appVersion = $appVersion;
121         }
122
123         /**
124          * Getter for human-readable name
125          *
126          * @return      $appName        The application's human-readable name
127          */
128         public final function getAppName () {
129                 return $this->appName;
130         }
131
132         /**
133          * Setter for human-readable name
134          *
135          * @param               $appName        The application's human-readable name
136          * @return      void
137          */
138         public final function setAppName ($appName) {
139                 // Cast and set it
140                 $appName = (string) $appName;
141                 $this->appName = $appName;
142         }
143
144         /**
145          * Getter for short uni*-like name
146          *
147          * @return      $shortName      The application's short uni*-like name
148          */
149         public final function getAppShortName () {
150                 return $this->shortName;
151         }
152
153         /**
154          * Setter for short uni*-like name
155          *
156          * @param               $shortName      The application's short uni*-like name
157          * @return      void
158          */
159         public final function setAppShortName ($shortName) {
160                 // Cast and set it
161                 $shortName = (string) $shortName;
162                 $this->shortName = $shortName;
163         }
164
165         /**
166          * Launcher for the mxchange mailexchange script
167          *
168          * @return      void
169          */
170         public final function entryPoint () {
171                 // Not yet implemented
172                 trigger_error(__METHOD__.": Not yet implemented!");
173         }
174
175         /**
176          * Getter for master template name
177          *
178          * @return      $masterTemplate         Name of the master template
179          */
180         public final function getMasterTemplate () {
181                 return $this->masterTemplate;
182         }
183
184         /**
185          * Handle the indexed array of fatal messages and puts them out in an
186          * acceptable fasion
187          *
188          * @param       $messageList    An array of fatal messages
189          * @return      void
190          */
191         public function handleFatalMessages (array $messageList) {
192                 // Walk through all messages
193                 foreach ($messageList as $message) {
194                         die("MSG:".$message);
195                 }
196         }
197 }
198
199 // [EOF]
200 ?>