]> git.mxchange.org Git - mailer.git/blobdiff - theme/business/theme.php
Internal TODO closed (sry for second commit)
[mailer.git] / theme / business / theme.php
index a90427ac0e414d4c77c1f87b511c333eb6bf66bb..5282519e7a1e2f903eae0982e5512c18f0157a56 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,29 +46,29 @@ if (!defined('__SECURITY')) {
 // Theme definitions
 //
 // The name of your theme
-$GLOBALS['theme_data']['name'] = "Solid-Business";
+$GLOBALS['theme_data']['name'] = 'Solid-Business';
 
 // 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"
+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;
 }
 //