]> 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 d58dd5bbb7e6a8ee6dfddd6de86a9e12c2dc3dc0..2234042abff8d121b4cd1c2cc88ba51f9ecde290 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::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * 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 *
  ************************************************************************/
 
 // Some security stuff...
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
-{
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
- elseif (!IS_MEMBER())
-{
-       LOAD_URL("modules.php?module=index");
+if (!defined('__SECURITY')) {
+       exit();
+} elseif (!isMember()) {
+       redirectToIndexMemberOnlyModule();
 }
 
 // Add description as navigation point
-ADD_DESCR("member", basename(__FILE__));
+addYouAreHereLink('member', __FILE__);
+
+if ((!isExtensionActive('theme')) && (!isAdmin())) {
+       displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=theme%}');
+       return;
+} // END - if
 
-if (!empty($_POST['member_theme']))
-{
+if (isPostRequestElementSet('member_theme')) {
        // Save theme to member's profile
-       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET curr_theme='%s' WHERE userid=%s LIMIT 1",
-         array($_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(
+                       postRequestElement('member_theme'),
+                       getMemberId()
+               ), __FILE__, __LINE__);
 
        // Set new theme for guests
-       $NewTheme = $_POST['member_theme'];
+       $newTheme = SQL_ESCAPE(postRequestElement('member_theme'));
 
        // Change to new theme
-       set_session("mxchange_theme", $NewTheme);
+       setMailerTheme($newTheme);
 
        // Theme saved!
-       LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_THEME_SAVED);
-}
+       displayMessage('{--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
+$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_version' => array(), // Version number of theme
 );
 
 // Read directory "themes"
-$handle = opendir(PATH."theme/") or mxchange_die("Cannot read themes dir!");
-while ($dir = readdir($handle)) {
-       // Construct absolute theme.php file name
-       $theme = sprintf("%stheme/%s/theme.php", PATH, $dir);
-
-       // Test it...
-       $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_themes WHERE theme_path='%s' AND theme_active='Y' LIMIT 1",
-        array($dir), __FILE__, __LINE__);
+$includes = getArrayFromDirectory('theme/', '', FALSE, TRUE, array('css', 'images'));
 
-       if (($dir != ".") && ($dir != "..") && (FILE_READABLE($theme)) && (SQL_NUMROWS($result) == 1)) {
-               // Free memory
-               SQL_FREERESULT($result);
+// 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
-               include($theme);
+               loadInclude($inc);
 
                // Add found theme to array
-               $THEMES['theme_unix'][]   = $dir;
-               $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;
+               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
 
-// 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;
-foreach ($THEMES['theme_unix'] as $key=>$unix)
-{
-       $default = "";
-       if (get_session('mxchange_theme') == $unix) $default = " checked selected";
-
-       // Add row
-       $OUT .= "<TR>
-  <TD class=\"switch_sw".$SW." bottom2 right2\" 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>
-  <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">
-    <A href=\"".DEREFERER($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>
-</TR>\n";
-       $SW = 3 - $SW;
-}
-if (empty($OUT))
-{
-       // No themes found???
-       $OUT = "<TR>
-  <TD colspan=\"5\" class=\"bottom2\" height=\"80\">
-    ".LOAD_TEMPLATE("admin_settings_saved", true, MEMBER_NO_THEMES_FOUND)."
-  </TD>
-</TR>\n";
-}
-define('__THEME_LIST', $OUT);
+$OUT = '';
+foreach ($themes['theme_unix'] as $key => $unix) {
+       $default = '';
+       if (getCurrentTheme() == $unix) {
+               $default = ' checked="checked"';
+       } // END - if
+
+       // 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">
+    ' . displayMessage('{--MEMBER_NO_THEMES_FOUND--}', TRUE) . '
+  </td>
+</tr>';
+} // END - if
 
 // Load template
-LOAD_TEMPLATE("member_themes");
+loadTemplate('member_themes', FALSE, $OUT);
 
-//
+// [EOF]
 ?>