2 /************************************************************************
3 * MXChange v0.2.1 Start: 03/20/2005 *
4 * ================ Last change: 03/20/2005 *
6 * -------------------------------------------------------------------- *
7 * File : what-themes.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Theme selection for members *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Design-Auswahl fuer Mitglieder *
12 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
18 * This program is free software; you can redistribute it and/or modify *
19 * it under the terms of the GNU General Public License as published by *
20 * the Free Software Foundation; either version 2 of the License, or *
21 * (at your option) any later version. *
23 * This program is distributed in the hope that it will be useful, *
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
26 * GNU General Public License for more details. *
28 * You should have received a copy of the GNU General Public License *
29 * along with this program; if not, write to the Free Software *
30 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
32 ************************************************************************/
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38 } elseif (!IS_MEMBER()) {
39 LOAD_URL("modules.php?module=index");
40 } elseif ((!EXT_IS_ACTIVE("theme")) && (!IS_ADMIN())) {
41 addFatalMessage(EXTENSION_PROBLEM_EXT_INACTIVE, "theme");
45 // Add description as navigation point
46 ADD_DESCR("member", __FILE__);
48 if (!empty($_POST['member_theme'])) {
49 // Save theme to member's profile
50 SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET curr_theme='%s' WHERE userid=%s LIMIT 1",
51 array($_POST['member_theme'], $GLOBALS['userid']), __FILE__, __LINE__);
53 // Set new theme for guests
54 $newTheme = SQL_ESCAPE($_POST['member_theme']);
56 // Change to new theme
57 set_session('mxchange_theme', $newTheme);
60 LOAD_TEMPLATE("admin_settings_saved", false, getMessage('MEMBER_THEME_SAVED'));
65 'theme_unix' => array(), // Unix name from filesystem
66 'theme_name' => array(), // Title
67 'theme_author' => array(), // Theme author's name
68 'theme_email' => array(), // Author's email address
69 'theme_url' => array(), // URL were you can download it from
70 'theme_ver' => array(), // Version number of theme
73 // Read directory "themes"
74 $handle = opendir(PATH."theme/") or mxchange_die("Cannot read themes dir!");
75 while ($entry = readdir($handle)) {
76 // Construct absolute theme.php file name
77 $INC = sprintf("theme/%s/theme.php", $entry);
79 if (($entry != ".") && ($entry != "..") && (FILE_READABLE($INC)) && (THEME_IS_ACTIVE($entry))) {
80 // Found a valid directory so let's load it's theme.php file
83 // Add found theme to array
84 $THEMES['theme_unix'][] = $entry;
85 $THEMES['theme_name'][] = $THEME_NAME;
86 $THEMES['theme_author'][] = $THEME_AUTHOR;
87 $THEMES['theme_email'][] = $THEME_EMAIL;
88 $THEMES['theme_url'][] = $THEME_URL;
89 $THEMES['theme_ver'][] = $THEME_VERSION;
96 // Sort array by Uni* name
97 array_pk_sort($THEMES, array("theme_name"));
99 // Generate output lines for the template
101 foreach ($THEMES['theme_unix'] as $key => $unix) {
103 if (get_session('mxchange_theme') == $unix) $default = " checked selected";
107 <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\" height=\"30\">
108 <input type=\"radio\" name=\"member_theme\" class=\"member_normal\" value=\"".$unix."\"".$default." />
110 <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">".$THEMES['theme_name'][$key]."</td>
111 <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">
112 <a href=\"mailto:".$THEMES['theme_email'][$key]."?Subject=[Theme:] ".$THEMES['theme_name'][$key]." (".$unix.")"."\">".$THEMES['theme_author'][$key]."</a>
114 <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">
115 <a href=\"".DEREFERER($THEMES['theme_url'][$key])."\" target=\"_blank\">".$THEMES['theme_url'][$key]."</a>
117 <td class=\"switch_sw".$SW." bottom2\" align=\"center\">v".$THEMES['theme_ver'][$key]."</td>
123 // No themes found???
125 <td colspan=\"5\" class=\"bottom2\" height=\"80\">
126 ".LOAD_TEMPLATE("admin_settings_saved", true, getMessage('MEMBER_NO_THEMES_FOUND'))."
130 define('__THEME_LIST', $OUT);
133 LOAD_TEMPLATE("member_themes");