]> git.mxchange.org Git - mailer.git/blobdiff - theme/default/theme.php
A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[mailer.git] / theme / default / theme.php
index f48c53866574f5e54a9254e8511f65503f8a9148..be4895b935481c5ed9debb7f77b4719f09422c08 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  :                                                  *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
@@ -41,29 +46,29 @@ if (!defined('__SECURITY')) {
 // Theme definitions
 //
 // The name of your theme
-$THEME_NAME = "Standart-Theme";
+$GLOBALS['theme_data']['name'] = 'Standart-Theme';
 
 // Only your name please!
-$THEME_AUTHOR = "Roland Häder";
+$GLOBALS['theme_data']['author'] = 'Roland Häder';
 
 // Your email address
-$THEME_EMAIL = "webmaster@mxchange.org";
+$GLOBALS['theme_data']['email'] = 'webmaster@mxchange.org';
 
 // URL where you have uploaded it
-$THEME_URL = "http://www.mxchange.org";
+$GLOBALS['theme_data']['url'] = 'http://www.mxchange.org';
 
 // Version number
-$THEME_VERSION = "0.0";
+$GLOBALS['theme_data']['version'] = '0.0';
 
 // Switch mode
-if (empty($THEME_MODE)) $THEME_MODE = "load";
+if (empty($GLOBALS['theme_mode'])) $GLOBALS['theme_mode'] = 'load';
 
-switch ($THEME_MODE)
+switch ($GLOBALS['theme_mode'])
 {
-case "test": // Do stuff while testing the theme: The admin clicked on "Import"
+case 'test': // Do stuff while testing the theme: The admin clicked on 'Import'
        break;
 
-case "load": // Do stuff while theme is loaded normally
+case 'load': // Do stuff while theme is loaded normally
        break;
 }
 //