]> git.mxchange.org Git - mailer.git/blobdiff - theme/default/theme.php
Notice added to always include debug.log in your full bug report
[mailer.git] / theme / default / theme.php
index b42cb8ada3f347898318ee9d5dcba0495ff136e1..3452e5920a2198cca7feb5fa2c82e73e938790be 100644 (file)
@@ -38,7 +38,7 @@
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 }
 
@@ -46,30 +46,30 @@ if (!defined('__SECURITY')) {
 // Theme definitions
 //
 // The name of your theme
-$GLOBALS['theme_data']['name'] = "Standart-Theme";
+$GLOBALS['theme_data']['name'] = 'Standart-Theme';
 
 // Only your name please!
-$GLOBALS['theme_data']['author'] = "Roland Häder";
+$GLOBALS['theme_data']['author'] = 'Roland Häder';
 
 // Your email address
-$GLOBALS['theme_data']['email'] = "webmaster@mxchange.org";
+$GLOBALS['theme_data']['email'] = 'webmaster@mxchange.org';
 
 // URL where you have uploaded it
-$GLOBALS['theme_data']['url'] = "http://www.mxchange.org";
+$GLOBALS['theme_data']['url'] = 'http://www.mxchange.org';
 
 // Version number
-$GLOBALS['theme_data']['version'] = "0.0";
+$GLOBALS['theme_data']['version'] = '0.0';
 
 // Switch mode
-if (empty($GLOBALS['theme_mode'])) $GLOBALS['theme_mode'] = "load";
+if (empty($GLOBALS['theme_mode'])) $GLOBALS['theme_mode'] = 'load';
 
 switch ($GLOBALS['theme_mode'])
 {
-case "test": // Do stuff while testing the theme: The admin clicked on "Import"
-       break;
+       case 'test': // Do stuff while testing the theme: The admin clicked on 'Import'
+               break;
 
-case "load": // Do stuff while theme is loaded normally
-       break;
+       case 'load': // Do stuff while theme is loaded normally
+               break;
 }
 //
 ?>