A lot code rewritten:
[mailer.git] / inc / modules / member / what-themes.php
index d238500bb59edb567c8a6d2b9c4f440514c15907..f7381e612ba3d4b036de2d4fa3e20cf64db44b18 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 03/20/2005 *
- * ================                             Last change: 03/20/2005 *
+ * Mailer v0.2.1-FINAL                                Start: 03/20/2005 *
+ * ===================                          Last change: 03/20/2005 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-themes.php                                  *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Design-Auswahl fuer Mitglieder                   *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $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 - 2008 by Roland Haeder                           *
+ * 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 *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-} elseif (!IS_MEMBER()) {
-       LOAD_URL("modules.php?module=index");
-} elseif ((!EXT_IS_ACTIVE("theme")) && (!IS_ADMIN())) {
-       addFatalMessage(__FILE__, __LINE__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), "theme");
-       return;
+       die();
+} elseif (!isMember()) {
+       redirectToIndexMemberOnlyModule();
 }
 
 // Add description as navigation point
-ADD_DESCR("member", __FILE__);
+addMenuDescription('member', __FILE__);
 
-if (REQUEST_ISSET_POST(('member_theme'))) {
+if ((!isExtensionActive('theme')) && (!isAdmin())) {
+       loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('theme'));
+       return;
+} // END - if
+
+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(REQUEST_POST('member_theme'), $GLOBALS['userid']), __FILE__, __LINE__);
+       SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `curr_theme`='%s' WHERE `userid`=%s LIMIT 1",
+               array(postRequestParameter('member_theme'), getMemberId()), __FILE__, __LINE__);
 
        // Set new theme for guests
-       $newTheme = SQL_ESCAPE(REQUEST_POST('member_theme'));
+       $newTheme = SQL_ESCAPE(postRequestParameter('member_theme'));
 
        // Change to new theme
-       set_session('mxchange_theme', $newTheme);
+       setTheme($newTheme);
 
        // Theme saved!
-       LOAD_TEMPLATE("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"
-$handle = opendir(constant('PATH')."theme/") or mxchange_die("Cannot read themes dir!");
-while ($entry = readdir($handle)) {
-       // Construct absolute theme.php file name
-       $INC = sprintf("theme/%s/theme.php", $entry);
+$includes = getArrayFromDirectory('theme/', '', false, true, array('css', 'images'));
 
-       if (($entry != ".") && ($entry != "..") && (INCLUDE_READABLE($INC)) && (THEME_IS_ACTIVE($entry))) {
+// Walk through all entries and add it
+foreach ($includes as $inc) {
+       // Get directory from it
+       $dir = basename(dirname($inc));
+
+       // Is the theme active, then include it
+       if (isThemeActive($dir)) {
                // Found a valid directory so let's load it's theme.php file
-               LOAD_INC($INC);
+               loadInclude($inc);
 
                // Add found theme to array
-               $THEMES['theme_unix'][]   = $entry;
-               $THEMES['theme_name'][]   = $THEME_NAME;
-               $THEMES['theme_author'][] = $THEME_AUTHOR;
-               $THEMES['theme_email'][]  = $THEME_EMAIL;
-               $THEMES['theme_url'][]    = $THEME_URL;
-               $THEMES['theme_ver'][]    = $THEME_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
 
-// Close directory
-closedir($handle);
+// Remove last theme data
+unset($GLOBALS['theme_data']);
 
 // Sort array by Uni* name
-array_pk_sort($THEMES, array("theme_name"));
+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 (get_session('mxchange_theme') == $unix) $default = " selected=\"selected\"";
+       $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\">
-    <a href=\"mailto:".$THEMES['theme_email'][$key]."?Subject=[Theme:] ".$THEMES['theme_name'][$key]." (".$unix.")"."\">".$THEMES['theme_author'][$key]."</a>
+  <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\">
-    <a href=\"".DEREFERER($THEMES['theme_url'][$key])."\" target=\"_blank\">".$THEMES['theme_url'][$key]."</a>
+  <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\">
-    ".LOAD_TEMPLATE("admin_settings_saved", true, getMessage('MEMBER_NO_THEMES_FOUND'))."
+       // No themes found???
+       $OUT = '<tr>
+  <td colspan="5" class="bottom" height="80">
+    ' . loadTemplate('admin_settings_saved', true, '{--MEMBER_NO_THEMES_FOUND--}') . '
   </td>
-</tr>\n";
-}
-define('__THEME_LIST', $OUT);
+</tr>';
+} // END - if
 
 // Load template
-LOAD_TEMPLATE("member_themes");
+loadTemplate('member_themes', false, $OUT);
 
-//
+// [EOF]
 ?>