]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-themes.php
A lot code rewritten:
[mailer.git] / inc / modules / member / what-themes.php
index e298d8789bed5b23ffd56bdc253b7c5252c39bb0..f7381e612ba3d4b036de2d4fa3e20cf64db44b18 100644 (file)
@@ -107,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." bottom right\" 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." bottom right\" align=\"center\">".$THEMES['theme_name'][$key]."</td>
-  <td class=\"switch_sw".$SW." bottom right\" 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." bottom right\" 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." bottom\" align=\"center\">v".$THEMES['theme_version'][$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=\"bottom\" height=\"80\">
-    ".loadTemplate('admin_settings_saved', true, '{--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