abd1f36a58c68965ed1e26dbc2e5e9cb295e63cb
[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@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 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                 // Tidy up a little
78                 $this->removeSystemArray();
79                 $this->removeNumberFormaters();
80         }
81
82         /**
83          * Getter for an instance of this class
84          *
85          * @return      $thisInstance           An instance of this class
86          */
87         public final static function getInstance () {
88                 // Is the instance there?
89                 if (is_null(self::$thisInstance)) {
90                         self::$thisInstance = new ApplicationHelper();
91                 }
92
93                 // Return the instance
94                 return self::$thisInstance;
95         }
96
97         /**
98          * Getter for the version number
99          *
100          * @return      $appVersion     The application's version number
101          */
102         public final function getAppVersion () {
103                 return $this->appVersion;
104         }
105
106         /**
107          * Setter for the version number
108          *
109          * @param               $appVersion     The application's version number
110          * @return      void
111          */
112         public final function setAppVersion ($appVersion) {
113                 // Cast and set it
114                 $this->appVersion = (string) $appVersion;
115         }
116
117         /**
118          * Getter for human-readable name
119          *
120          * @return      $appName        The application's human-readable name
121          */
122         public final function getAppName () {
123                 return $this->appName;
124         }
125
126         /**
127          * Setter for human-readable name
128          *
129          * @param               $appName        The application's human-readable name
130          * @return      void
131          */
132         public final function setAppName ($appName) {
133                 // Cast and set it
134                 $this->appName = (string) $appName;
135         }
136
137         /**
138          * Getter for short uni*-like name
139          *
140          * @return      $shortName      The application's short uni*-like name
141          */
142         public final function getAppShortName () {
143                 return $this->shortName;
144         }
145
146         /**
147          * Setter for short uni*-like name
148          *
149          * @param               $shortName      The application's short uni*-like name
150          * @return      void
151          */
152         public final function setAppShortName ($shortName) {
153                 // Cast and set it
154                 $this->shortName = (string) $shortName;
155         }
156
157         /**
158          * Launcher for the mxchange mailexchange script
159          *
160          * @return      void
161          */
162         public final function entryPoint () {
163                 // Not yet implemented
164                 trigger_error(__METHOD__.": Not yet implemented!");
165         }
166
167         /**
168          * Getter for master template name
169          *
170          * @return      $masterTemplate         Name of the master template
171          */
172         public final function getMasterTemplate () {
173                 return $this->masterTemplate;
174         }
175
176         /**
177          * Handle the indexed array of fatal messages and puts them out in an
178          * acceptable fasion
179          *
180          * @param       $messageList    An array of fatal messages
181          * @return      void
182          */
183         public function handleFatalMessages (array $messageList) {
184                 // Walk through all messages
185                 foreach ($messageList as $message) {
186                         die("MSG:".$message);
187                 }
188         }
189 }
190
191 // [EOF]
192 ?>