]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-themes.php
Code style changed, ext-user continued:
[mailer.git] / inc / modules / member / what-themes.php
index 0dad311230328796dea510234312c48e9ba4df68..2234042abff8d121b4cd1c2cc88ba51f9ecde290 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -37,7 +37,7 @@
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       die();
+       exit();
 } elseif (!isMember()) {
        redirectToIndexMemberOnlyModule();
 }
@@ -50,19 +50,19 @@ if ((!isExtensionActive('theme')) && (!isAdmin())) {
        return;
 } // END - if
 
-if (isPostRequestParameterSet('member_theme')) {
+if (isPostRequestElementSet('member_theme')) {
        // Save theme to member's profile
        SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `curr_theme`='%s' WHERE `userid`=%s LIMIT 1",
                array(
-                       postRequestParameter('member_theme'),
+                       postRequestElement('member_theme'),
                        getMemberId()
                ), __FILE__, __LINE__);
 
        // Set new theme for guests
-       $newTheme = SQL_ESCAPE(postRequestParameter('member_theme'));
+       $newTheme = SQL_ESCAPE(postRequestElement('member_theme'));
 
        // Change to new theme
-       setTheme($newTheme);
+       setMailerTheme($newTheme);
 
        // Theme saved!
        displayMessage('{--MEMBER_THEME_SAVED--}');
@@ -79,7 +79,7 @@ $themes = array(
 );
 
 // Read directory "themes"
-$includes = getArrayFromDirectory('theme/', '', false, true, array('css', 'images'));
+$includes = getArrayFromDirectory('theme/', '', FALSE, TRUE, array('css', 'images'));
 
 // Walk through all entries and add it
 foreach ($includes as $inc) {
@@ -92,12 +92,12 @@ foreach ($includes as $inc) {
                loadInclude($inc);
 
                // Add found theme to array
-               $themes['theme_unix'][]    = $dir;
-               $themes['theme_name'][]    = $GLOBALS['theme_data']['name'];
-               $themes['theme_author'][]  = $GLOBALS['theme_data']['author'];
-               $themes['theme_email'][]   = $GLOBALS['theme_data']['email'];
-               $themes['theme_url'][]     = $GLOBALS['theme_data']['url'];
-               $themes['theme_version'][] = $GLOBALS['theme_data']['version'];
+               array_push($themes['theme_unix']   , $dir);
+               array_push($themes['theme_name']   , $GLOBALS['theme_data']['name']);
+               array_push($themes['theme_author'] , $GLOBALS['theme_data']['author']);
+               array_push($themes['theme_email']  , $GLOBALS['theme_data']['email']);
+               array_push($themes['theme_url']    , $GLOBALS['theme_data']['url']);
+               array_push($themes['theme_version'], $GLOBALS['theme_data']['version']);
        } // END - if
 } // END - while
 
@@ -127,20 +127,20 @@ foreach ($themes['theme_unix'] as $key => $unix) {
        );
 
        // Load row template
-       $OUT .= loadTemplate('member_themes_row', true, $content);
+       $OUT .= loadTemplate('member_themes_row', TRUE, $content);
 } // END - foreach
 
 if (empty($OUT)) {
        // No themes found???
        $OUT = '<tr>
   <td colspan="5" class="bottom" height="80">
-    ' . displayMessage('{--MEMBER_NO_THEMES_FOUND--}', true) . '
+    ' . displayMessage('{--MEMBER_NO_THEMES_FOUND--}', TRUE) . '
   </td>
 </tr>';
 } // END - if
 
 // Load template
-loadTemplate('member_themes', false, $OUT);
+loadTemplate('member_themes', FALSE, $OUT);
 
 // [EOF]
 ?>