]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-themes.php
Table user_book renamed to user_booking, isExtensionOlder() should not be used, inste...
[mailer.git] / inc / modules / member / what-themes.php
index e298d8789bed5b23ffd56bdc253b7c5252c39bb0..20d74a441e1e3ef05242ecbcfe584c701fd3a123 100644 (file)
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
+ * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -45,10 +43,10 @@ if (!defined('__SECURITY')) {
 }
 
 // Add description as navigation point
-addMenuDescription('member', __FILE__);
+addYouAreHereLink('member', __FILE__);
 
 if ((!isExtensionActive('theme')) && (!isAdmin())) {
-       loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('theme'));
+       displayMessage(generateExtensionInactiveNotInstalledMessage('theme'));
        return;
 } // END - if
 
@@ -64,7 +62,7 @@ if (isPostRequestParameterSet('member_theme')) {
        setTheme($newTheme);
 
        // Theme saved!
-       loadTemplate('admin_settings_saved', false, '{--MEMBER_THEME_SAVED--}');
+       displayMessage('{--MEMBER_THEME_SAVED--}');
 } // END - if
 
 // Initialize array
@@ -107,35 +105,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"';
+       if (getCurrentTheme() == $unix) {
+               $default = ' checked="checked"';
+       } // END - if
 
-       // Add row
-       $OUT .= "<tr>
-  <td class=\"switch_sw".$SW." 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\">
-    <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\">
-    <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>
-</tr>\n";
-       $SW = 3 - $SW;
+       // Prepare content
+       $content = array(
+               'unix'          => $unix,
+               'default'       => $default,
+               'theme_name'    => $THEMES['theme_name'][$key],
+               'theme_email'   => $THEMES['theme_email'][$key],
+               'theme_author'  => $THEMES['theme_author'][$key],
+               'theme_url'     => $THEMES['theme_url'][$key],
+               'theme_version' => $THEMES['theme_version'][$key]
+       );
+
+       // Load row template
+       $OUT .= loadTemplate('member_themes_row', true, $content);
 } // 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">
+    ' . displayMessage('{--MEMBER_NO_THEMES_FOUND--}', true) . '
   </td>
-</tr>\n";
+</tr>';
 } // END - if
 
 // Load template