More usage of GET_URL() than file()
[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 (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif (!IS_MEMBER()) {
39         LOAD_URL("modules.php?module=index");
40 }
41
42 // Add description as navigation point
43 ADD_DESCR("member", __FILE__);
44
45 if (!empty($_POST['member_theme'])) {
46         // Save theme to member's profile
47         $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET curr_theme='%s' WHERE userid=%s LIMIT 1",
48           array($_POST['member_theme'], $GLOBALS['userid']), __FILE__, __LINE__);
49
50         // Set new theme for guests
51         $newTheme = SQL_ESCAPE($_POST['member_theme']);
52
53         // Change to new theme
54         set_session("mxchange_theme", $newTheme);
55
56         // Theme saved!
57         LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_THEME_SAVED);
58 }
59
60 // Initialize array
61 $THEMES = array(
62         'theme_unix'   => array(), // Unix name from filesystem
63         'theme_name'   => array(), // Title
64         'theme_author' => array(), // Theme author's name
65         'theme_email'  => array(), // Author's email address
66         'theme_url'    => array(), // URL were you can download it from
67         'theme_ver'    => array(), // Version number of theme
68 );
69
70 // Read directory "themes"
71 $handle = opendir(PATH."theme/") or mxchange_die("Cannot read themes dir!");
72 while ($entry = readdir($handle)) {
73         // Construct absolute theme.php file name
74         $theme = sprintf("%stheme/%s/theme.php", PATH, $entry);
75
76         if (($entry != ".") && ($entry != "..") && (FILE_READABLE($theme)) && (THEME_IS_ACTIVE($entry))) {
77                 // Found a valid directory so let's load it's theme.php file
78                 include($theme);
79
80                 // Add found theme to array
81                 $THEMES['theme_unix'][]   = $entry;
82                 $THEMES['theme_name'][]   = $THEME_NAME;
83                 $THEMES['theme_author'][] = $THEME_AUTHOR;
84                 $THEMES['theme_email'][]  = $THEME_EMAIL;
85                 $THEMES['theme_url'][]    = $THEME_URL;
86                 $THEMES['theme_ver'][]    = $THEME_VERSION;
87         } // END - if
88 } // END - while
89
90 // Close directory
91 closedir($handle);
92
93 // Sort array by Uni* name
94 array_pk_sort($THEMES, array("theme_name"));
95
96 // Generate output lines for the template
97 $OUT = ""; $SW = 2;
98 foreach ($THEMES['theme_unix'] as $key => $unix) {
99         $default = "";
100         if (get_session('mxchange_theme') == $unix) $default = " checked selected";
101
102         // Add row
103         $OUT .= "<TR>
104   <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\" height=\"30\">
105     <INPUT type=\"radio\" name=\"member_theme\" class=\"member_normal\" value=\"".$unix."\"".$default.">
106   </TD>
107   <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">".$THEMES['theme_name'][$key]."</TD>
108   <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">
109     <A href=\"mailto:".$THEMES['theme_email'][$key]."?Subject=[Theme:] ".$THEMES['theme_name'][$key]." (".$unix.")"."\">".$THEMES['theme_author'][$key]."</A>
110   </TD>
111   <TD class=\"switch_sw".$SW." bottom2 right2\" align=\"center\">
112     <A href=\"".DEREFERER($THEMES['theme_url'][$key])."\" target=\"_blank\">".$THEMES['theme_url'][$key]."</A>
113   </TD>
114   <TD class=\"switch_sw".$SW." bottom2\" align=\"center\">v".$THEMES['theme_ver'][$key]."</TD>
115 </TR>\n";
116         $SW = 3 - $SW;
117 }
118
119 if (empty($OUT)) {
120         // No themes found???
121         $OUT = "<TR>
122   <TD colspan=\"5\" class=\"bottom2\" height=\"80\">
123     ".LOAD_TEMPLATE("admin_settings_saved", true, MEMBER_NO_THEMES_FOUND)."
124   </TD>
125 </TR>\n";
126 }
127 define('__THEME_LIST', $OUT);
128
129 // Load template
130 LOAD_TEMPLATE("member_themes");
131
132 //
133 ?>