]> git.mxchange.org Git - mailer.git/blobdiff - 0.2.1/inc/modules/member/what-themes.php
win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / inc / modules / member / what-themes.php
index b944752dec427e9ded502edfc137f5b177efa2cd..fe74c42d26aba336d4cd9a3e52887cb3e66af62e 100644 (file)
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 03/20/2005 *\r
- * ================                             Last change: 03/20/2005 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : what-themes.php                                  *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Theme selection for members                      *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Design-Auswahl fuer Mitglieder                   *\r
- * -------------------------------------------------------------------- *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
- * For more information visit: http://www.mxchange.org                  *\r
- *                                                                      *\r
- * This program is free software; you can redistribute it and/or modify *\r
- * it under the terms of the GNU General Public License as published by *\r
- * the Free Software Foundation; either version 2 of the License, or    *\r
- * (at your option) any later version.                                  *\r
- *                                                                      *\r
- * This program is distributed in the hope that it will be useful,      *\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
- * GNU General Public License for more details.                         *\r
- *                                                                      *\r
- * You should have received a copy of the GNU General Public License    *\r
- * along with this program; if not, write to the Free Software          *\r
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
- * MA  02110-1301  USA                                                  *\r
- ************************************************************************/\r
-\r
-// Some security stuff...\r
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))\r
-{\r
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";\r
-       require($INC);\r
-}\r
- elseif (!IS_LOGGED_IN())\r
-{\r
-       LOAD_URL(URL."/modules.php?module=index");\r
-}\r
-\r
-// Add description as navigation point\r
-ADD_DESCR("member", basename(__FILE__));\r
-\r
-if (!empty($_POST['member_theme']))\r
-{\r
-       // Save theme to member's profile\r
-       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET curr_theme='%s' WHERE userid=%d LIMIT 1",\r
-         array($_POST['member_theme'], $GLOBALS['userid']), __FILE__, __LINE__);\r
-\r
-       // Set new theme for guests\r
-       $NewTheme = $_POST['member_theme'];\r
-\r
-       // Change to new theme\r
-       @setcookie("mxchange_theme", $NewTheme, (time() + 60*60*24*365), COOKIE_PATH);\r
-       $_COOKIE['mxchange_theme'] = $NewTheme;\r
-\r
-       // Theme saved!\r
-       LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_THEME_SAVED);\r
-}\r
-\r
-// Initialize array\r
-$THEMES = array(\r
-       'theme_unix'   => array(), // Unix name from filesystem\r
-       'theme_name'   => array(), // Title\r
-       'theme_author' => array(), // Theme author's name\r
-       'theme_email'  => array(), // Author's email address\r
-       'theme_url'    => array(), // URL were you can download it from\r
-       'theme_ver'    => array(), // Version number of theme\r
-);\r
-\r
-// Read directory "themes"\r
-$handle = opendir(PATH."theme/") or mxchange_die("Cannot read themes dir!");\r
-while ($dir = readdir($handle))\r
-{\r
-       // Construct absolute theme.php file name\r
-       $theme = PATH."theme/".$dir."/"."theme.php";\r
-\r
-       // Test it...\r
-       $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_themes WHERE theme_path='%s' AND theme_active='Y' LIMIT 1",\r
-        array($dir), __FILE__, __LINE__);\r
-\r
-       if (($dir != ".") && ($dir != "..") && (file_exists($theme)) && (is_readable($theme)) && (SQL_NUMROWS($result) == 1))\r
-       {\r
-               // Free memory\r
-               SQL_FREERESULT($result);\r
-\r
-               // Found a valid directory so let's load it's theme.php file\r
-               include($theme);\r
-\r
-               // Add found theme to array\r
-               $THEMES['theme_unix'][]   = $dir;\r
-               $THEMES['theme_name'][]   = $THEME_NAME;\r
-               $THEMES['theme_author'][] = $THEME_AUTHOR;\r
-               $THEMES['theme_email'][]  = $THEME_EMAIL;\r
-               $THEMES['theme_url'][]    = $THEME_URL;\r
-               $THEMES['theme_ver'][]    = $THEME_VERSION;\r
-       }\r
-}\r
-closedir($handle);\r
-\r
-// Sort array by Uni* name\r
-array_pk_sort($THEMES, array("theme_name"));\r
-\r
-// Generate output lines for the template\r
-$OUT = ""; $SW = 2;\r
-foreach ($THEMES['theme_unix'] as $key=>$unix)\r
-{\r
-       $default = "";\r
-       if ($_COOKIE['mxchange_theme'] == $unix) $default = " checked selected";\r
-\r
-       // Add row\r
-       $OUT .= "<TR>\r
-  <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\" height=\"30\">\r
-    <INPUT type=\"radio\" name=\"member_theme\" class=\"member_normal\" value=\"".$unix."\"".$default.">\r
-  </TD>\r
-  <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">".$THEMES['theme_name'][$key]."</TD>\r
-  <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">\r
-    <A href=\"mailto:".$THEMES['theme_email'][$key]."?Subject=[Theme:] ".$THEMES['theme_name'][$key]." (".$unix.")"."\">".$THEMES['theme_author'][$key]."</A>\r
-  </TD>\r
-  <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">\r
-    <A href=\"".DEREFERER($THEMES['theme_url'][$key])."\" target=\"_blank\">".$THEMES['theme_url'][$key]."</A>\r
-  </TD>\r
-  <TD class=\"switch_sw".$SW." bottom2\" align=\"center\">v".$THEMES['theme_ver'][$key]."</TD>\r
-</TR>\n";\r
-       $SW = 3 - $SW;\r
-}\r
-if (empty($OUT))\r
-{\r
-       // No themes found???\r
-       $OUT = "<TR>\r
-  <TD colspan=\"5\" class=\"bottom2\" height=\"80\">\r
-    ".LOAD_TEMPLATE("admin_settings_saved", true, MEMBER_NO_THEMES_FOUND)."\r
-  </TD>\r
-</TR>\n";\r
-}\r
-define('__THEME_LIST', $OUT);\r
-\r
-// Load template\r
-LOAD_TEMPLATE("member_themes");\r
-\r
-//\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 03/20/2005 *
+ * ================                             Last change: 03/20/2005 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-themes.php                                  *
+ * -------------------------------------------------------------------- *
+ * Short description : Theme selection for members                      *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Design-Auswahl fuer Mitglieder                   *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * For more information visit: http://www.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 *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// 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_LOGGED_IN())
+{
+       LOAD_URL(URL."/modules.php?module=index");
+}
+
+// Add description as navigation point
+ADD_DESCR("member", basename(__FILE__));
+
+if (!empty($_POST['member_theme']))
+{
+       // Save theme to member's profile
+       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET curr_theme='%s' WHERE userid=%d LIMIT 1",
+         array($_POST['member_theme'], $GLOBALS['userid']), __FILE__, __LINE__);
+
+       // Set new theme for guests
+       $NewTheme = $_POST['member_theme'];
+
+       // Change to new theme
+       @setcookie("mxchange_theme", $NewTheme, (time() + 60*60*24*365), COOKIE_PATH);
+       $_COOKIE['mxchange_theme'] = $NewTheme;
+
+       // Theme saved!
+       LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_THEME_SAVED);
+}
+
+// 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
+);
+
+// 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 = PATH."theme/".$dir."/"."theme.php";
+
+       // 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__);
+
+       if (($dir != ".") && ($dir != "..") && (file_exists($theme)) && (is_readable($theme)) && (SQL_NUMROWS($result) == 1))
+       {
+               // Free memory
+               SQL_FREERESULT($result);
+
+               // Found a valid directory so let's load it's theme.php file
+               include($theme);
+
+               // 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;
+       }
+}
+closedir($handle);
+
+// Sort array by Uni* 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 ($_COOKIE['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);
+
+// Load template
+LOAD_TEMPLATE("member_themes");
+
+//
+?>