A lot code rewritten:
[mailer.git] / inc / modules / member / what-themes.php
index 7acdd77a431451b3177059d5629a010d6977a9f0..f7381e612ba3d4b036de2d4fa3e20cf64db44b18 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
  * Mailer v0.2.1-FINAL                                Start: 03/20/2005 *
- * ================                             Last change: 03/20/2005 *
+ * ===================                          Last change: 03/20/2005 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-themes.php                                  *
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -51,29 +52,29 @@ if ((!isExtensionActive('theme')) && (!isAdmin())) {
        return;
 } // END - if
 
-if (isPostRequestElementSet('member_theme')) {
+if (isPostRequestParameterSet('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(postRequestElement('member_theme'), getMemberId()), __FILE__, __LINE__);
+               array(postRequestParameter('member_theme'), getMemberId()), __FILE__, __LINE__);
 
        // Set new theme for guests
-       $newTheme = SQL_ESCAPE(postRequestElement('member_theme'));
+       $newTheme = SQL_ESCAPE(postRequestParameter('member_theme'));
 
        // Change to new theme
        setTheme($newTheme);
 
        // Theme saved!
-       loadTemplate('admin_settings_saved', false, getMessage('MEMBER_THEME_SAVED'));
+       loadTemplate('admin_settings_saved', false, '{--MEMBER_THEME_SAVED--}');
 } // END - if
 
 // Initialize array
 $THEMES = array(
-       'theme_unix'   => array(), // Unix name from filesystem
-       'theme_name'   => array(), // Title
-       'theme_author' => array(), // Theme author's name
-       'theme_email'  => array(), // Author's email address
-       'theme_url'    => array(), // URL were you can download it from
-       'theme_ver'    => array(), // Version number of theme
+       'theme_unix'    => array(), // Unix name from filesystem
+       'theme_name'    => array(), // Title
+       'theme_author'  => array(), // Theme author's name
+       'theme_email'   => array(), // Author's email address
+       'theme_url'     => array(), // URL were you can download it from
+       'theme_version' => array(), // Version number of theme
 );
 
 // Read directory "themes"
@@ -90,12 +91,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_ver'][]    = $GLOBALS['theme_data']['version'];
+               $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'];
        } // END - if
 } // END - while
 
@@ -106,35 +107,35 @@ unset($GLOBALS['theme_data']);
 array_pk_sort($THEMES, array('theme_name'));
 
 // Generate output lines for the template
-$OUT = ''; $SW = 2;
+$OUT = '';
 foreach ($THEMES['theme_unix'] as $key => $unix) {
        $default = '';
        if (getCurrentTheme() == $unix) $default = ' selected="selected"';
 
        // Add row
+       // @TODO Move this code into a template
        $OUT .= "<tr>
-  <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\" height=\"30\">
+  <td class=\"{%template,ColorSwitch%} bottom right\" align=\"center\" height=\"30\">
     <input type=\"radio\" name=\"member_theme\" class=\"member_normal\" value=\"".$unix."\"".$default." />
   </td>
-  <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">".$THEMES['theme_name'][$key]."</td>
-  <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">
+  <td class=\"{%template,ColorSwitch%} bottom right\" align=\"center\">".$THEMES['theme_name'][$key]."</td>
+  <td class=\"{%template,ColorSwitch%} bottom right\" align=\"center\">
     <a href=\"mailto:".$THEMES['theme_email'][$key]."?Subject=[Theme:] ".$THEMES['theme_name'][$key]." (".$unix.")'.'\">".$THEMES['theme_author'][$key]."</a>
   </td>
-  <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">
+  <td class=\"{%template,ColorSwitch%} bottom right\" align=\"center\">
     <a href=\"".generateDerefererUrl($THEMES['theme_url'][$key])."\" target=\"_blank\">".$THEMES['theme_url'][$key]."</a>
   </td>
-  <td class=\"switch_sw".$SW." bottom2\" align=\"center\">v".$THEMES['theme_ver'][$key]."</td>
+  <td class=\"{%template,ColorSwitch%} bottom\" align=\"center\">v".$THEMES['theme_version'][$key]."</td>
 </tr>\n";
-       $SW = 3 - $SW;
 } // END - foreach
 
 if (empty($OUT)) {
        // No themes found???
-       $OUT = "<tr>
-  <td colspan=\"5\" class=\"bottom2\" height=\"80\">
-    ".loadTemplate('admin_settings_saved', true, getMessage('MEMBER_NO_THEMES_FOUND'))."
+       $OUT = '<tr>
+  <td colspan="5" class="bottom" height="80">
+    ' . loadTemplate('admin_settings_saved', true, '{--MEMBER_NO_THEMES_FOUND--}') . '
   </td>
-</tr>\n";
+</tr>';
 } // END - if
 
 // Load template