wernis extension is now alpha code (only listing in admin area is missing), naming...
[mailer.git] / inc / modules / member / what-themes.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 03/20/2005 *
4  * ================                             Last change: 03/20/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-themes.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Theme selection for members                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Design-Auswahl fuer Mitglieder                   *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
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.                                  *
22  *                                                                      *
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.                         *
27  *                                                                      *
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,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40  elseif (!IS_LOGGED_IN())
41 {
42         LOAD_URL("modules.php?module=index");
43 }
44
45 // Add description as navigation point
46 ADD_DESCR("member", basename(__FILE__));
47
48 if (!empty($_POST['member_theme']))
49 {
50         // Save theme to member's profile
51         $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET curr_theme='%s' WHERE userid=%d LIMIT 1",
52           array($_POST['member_theme'], $GLOBALS['userid']), __FILE__, __LINE__);
53
54         // Set new theme for guests
55         $NewTheme = $_POST['member_theme'];
56
57         // Change to new theme
58         @setcookie("mxchange_theme", $NewTheme, (time() + 60*60*24*365), COOKIE_PATH);
59         $_COOKIE['mxchange_theme'] = $NewTheme;
60
61         // Theme saved!
62         LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_THEME_SAVED);
63 }
64
65 // Initialize array
66 $THEMES = array(
67         'theme_unix'   => array(), // Unix name from filesystem
68         'theme_name'   => array(), // Title
69         'theme_author' => array(), // Theme author's name
70         'theme_email'  => array(), // Author's email address
71         'theme_url'    => array(), // URL were you can download it from
72         'theme_ver'    => array(), // Version number of theme
73 );
74
75 // Read directory "themes"
76 $handle = opendir(PATH."theme/") or mxchange_die("Cannot read themes dir!");
77 while ($dir = readdir($handle))
78 {
79         // Construct absolute theme.php file name
80         $theme = PATH."theme/".$dir."/"."theme.php";
81
82         // Test it...
83         $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_themes WHERE theme_path='%s' AND theme_active='Y' LIMIT 1",
84          array($dir), __FILE__, __LINE__);
85
86         if (($dir != ".") && ($dir != "..") && (file_exists($theme)) && (is_readable($theme)) && (SQL_NUMROWS($result) == 1))
87         {
88                 // Free memory
89                 SQL_FREERESULT($result);
90
91                 // Found a valid directory so let's load it's theme.php file
92                 include($theme);
93
94                 // Add found theme to array
95                 $THEMES['theme_unix'][]   = $dir;
96                 $THEMES['theme_name'][]   = $THEME_NAME;
97                 $THEMES['theme_author'][] = $THEME_AUTHOR;
98                 $THEMES['theme_email'][]  = $THEME_EMAIL;
99                 $THEMES['theme_url'][]    = $THEME_URL;
100                 $THEMES['theme_ver'][]    = $THEME_VERSION;
101         }
102 }
103 closedir($handle);
104
105 // Sort array by Uni* name
106 array_pk_sort($THEMES, array("theme_name"));
107
108 // Generate output lines for the template
109 $OUT = ""; $SW = 2;
110 foreach ($THEMES['theme_unix'] as $key=>$unix)
111 {
112         $default = "";
113         if ($_COOKIE['mxchange_theme'] == $unix) $default = " checked selected";
114
115         // Add row
116         $OUT .= "<TR>
117   <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\" height=\"30\">
118     <INPUT type=\"radio\" name=\"member_theme\" class=\"member_normal\" value=\"".$unix."\"".$default.">
119   </TD>
120   <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">".$THEMES['theme_name'][$key]."</TD>
121   <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">
122     <A href=\"mailto:".$THEMES['theme_email'][$key]."?Subject=[Theme:] ".$THEMES['theme_name'][$key]." (".$unix.")"."\">".$THEMES['theme_author'][$key]."</A>
123   </TD>
124   <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">
125     <A href=\"".DEREFERER($THEMES['theme_url'][$key])."\" target=\"_blank\">".$THEMES['theme_url'][$key]."</A>
126   </TD>
127   <TD class=\"switch_sw".$SW." bottom2\" align=\"center\">v".$THEMES['theme_ver'][$key]."</TD>
128 </TR>\n";
129         $SW = 3 - $SW;
130 }
131 if (empty($OUT))
132 {
133         // No themes found???
134         $OUT = "<TR>
135   <TD colspan=\"5\" class=\"bottom2\" height=\"80\">
136     ".LOAD_TEMPLATE("admin_settings_saved", true, MEMBER_NO_THEMES_FOUND)."
137   </TD>
138 </TR>\n";
139 }
140 define('__THEME_LIST', $OUT);
141
142 // Load template
143 LOAD_TEMPLATE("member_themes");
144
145 //
146 ?>