More misc fixes and rewrites (sorry, lame description)
[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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 } elseif (!IS_MEMBER()) {
44         redirectToUrl('modules.php?module=index');
45 } elseif ((!EXT_IS_ACTIVE('theme')) && (!IS_ADMIN())) {
46         addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveNotInstalledMessage('theme'));
47         return;
48 }
49
50 // Add description as navigation point
51 ADD_DESCR('member', __FILE__);
52
53 if (REQUEST_ISSET_POST('member_theme')) {
54         // Save theme to member's profile
55         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET `curr_theme`='%s' WHERE `userid`=%s LIMIT 1",
56                 array(REQUEST_POST('member_theme'), getUserId()), __FILE__, __LINE__);
57
58         // Set new theme for guests
59         $newTheme = SQL_ESCAPE(REQUEST_POST('member_theme'));
60
61         // Change to new theme
62         setSession('mxchange_theme', $newTheme);
63
64         // Theme saved!
65         LOAD_TEMPLATE('admin_settings_saved', false, getMessage('MEMBER_THEME_SAVED'));
66 }
67
68 // Initialize array
69 $THEMES = array(
70         'theme_unix'   => array(), // Unix name from filesystem
71         'theme_name'   => array(), // Title
72         'theme_author' => array(), // Theme author's name
73         'theme_email'  => array(), // Author's email address
74         'theme_url'    => array(), // URL were you can download it from
75         'theme_ver'    => array(), // Version number of theme
76 );
77
78 // Read directory "themes"
79 $includes = getArrayFromDirectory('theme/', '', false, true, array('css', 'images'));
80
81 // Walk through all entries and add it
82 foreach ($includes as $INC) {
83         // Get directory from it
84         $dir = basename(dirname($INC));
85
86         // Is the theme active, then include it
87         if (isThemeActive($dir)) {
88                 // Found a valid directory so let's load it's theme.php file
89                 loadInclude($INC);
90
91                 // Add found theme to array
92                 $THEMES['theme_unix'][]   = $dir;
93                 $THEMES['theme_name'][]   = $GLOBALS['theme_data']['name'];
94                 $THEMES['theme_author'][] = $GLOBALS['theme_data']['author'];
95                 $THEMES['theme_email'][]  = $GLOBALS['theme_data']['email'];
96                 $THEMES['theme_url'][]    = $GLOBALS['theme_data']['url'];
97                 $THEMES['theme_ver'][]    = $GLOBALS['theme_data']['version'];
98         } // END - if
99 } // END - while
100
101 // Remove last theme data
102 unset($GLOBALS['theme_data']);
103
104 // Sort array by Uni* name
105 array_pk_sort($THEMES, array('theme_name'));
106
107 // Generate output lines for the template
108 $OUT = ''; $SW = 2;
109 foreach ($THEMES['theme_unix'] as $key => $unix) {
110         $default = '';
111         if (getSession('mxchange_theme') == $unix) $default = ' selected="selected"';
112
113         // Add row
114         $OUT .= "<tr>
115   <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\" height=\"30\">
116     <input type=\"radio\" name=\"member_theme\" class=\"member_normal\" value=\"".$unix."\"".$default." />
117   </td>
118   <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">".$THEMES['theme_name'][$key]."</td>
119   <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">
120     <a href=\"mailto:".$THEMES['theme_email'][$key]."?Subject=[Theme:] ".$THEMES['theme_name'][$key]." (".$unix.")'.'\">".$THEMES['theme_author'][$key]."</a>
121   </td>
122   <td class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">
123     <a href=\"".DEREFERER($THEMES['theme_url'][$key])."\" target=\"_blank\">".$THEMES['theme_url'][$key]."</a>
124   </td>
125   <td class=\"switch_sw".$SW." bottom2\" align=\"center\">v".$THEMES['theme_ver'][$key]."</td>
126 </tr>\n";
127         $SW = 3 - $SW;
128 } // END - foreach
129
130 if (empty($OUT)) {
131         // No themes found???
132         $OUT = "<tr>
133   <td colspan=\"5\" class=\"bottom2\" height=\"80\">
134     ".LOAD_TEMPLATE('admin_settings_saved', true, getMessage('MEMBER_NO_THEMES_FOUND'))."
135   </td>
136 </tr>\n";
137 } // END - if
138 define('__THEME_LIST', $OUT);
139
140 // Load template
141 LOAD_TEMPLATE("member_themes");
142
143 //
144 ?>