Security line in all includes changed
[mailer.git] / inc / modules / admin / what-theme_edit.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 02/12/2004 *
4  * ================                             Last change: 02/12/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-theme_edit.php                              *
8  * -------------------------------------------------------------------- *
9  * Short description :                                                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  :                                                  *
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')) || (!is_admin())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
42
43 // Check for selected themes
44 $SEL = 0;
45 if (!empty($_POST['sel'])) $SEL = SELECTION_COUNT($_POST['sel']);
46 if ($SEL > 0) {
47         $OUT = "";
48         foreach ($_POST['sel'] as $id => $sel) {
49                 $SQL = "";
50                 // Shall I de-/activate or delete themes?
51                 if (isset($_POST['status'])) {
52                         // Change status
53                         if ($_POST['active'][$id] == "Y") {
54                                 $SQL = "UPDATE "._MYSQL_PREFIX."_themes SET theme_active='N' WHERE id='".$id."' LIMIT 1";
55                         } else {
56                                 $SQL = "UPDATE "._MYSQL_PREFIX."_themes SET theme_active='Y' WHERE id='".$id."' LIMIT 1";
57                         }
58                         $OUT = ADMIN_THEMES_UPDATED;
59                 } elseif (isset($_POST['del'])) {
60                         // Delete themes
61                         $SQL = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_themes WHERE id='".$id."' LIMIT 1";
62                         $OUT = ADMIN_THEMES_DELETED;
63                 }
64
65                 // Run SQL command?
66                 if (!empty($SQL)) {
67                         // Run it
68                         $result = SQL_QUERY($SQL, __FILE__, __LINE__);
69
70                         // Rebuild cache
71                         REBUILD_CACHE("themes", "them");
72                 }
73         }
74
75         // Output generated?
76         if (empty($OUT)) ADMIN_THEME_NO_OUTPUT;
77 } elseif (!empty($_GET['default_theme'])) {
78         // Escape string from input
79         $POST['default_theme'] = SQL_ESCAPE($_GET['default_theme']);
80
81         // Set session
82         set_session("mxchange_theme", $POST['default_theme']);
83
84         // Set it in config and current theme as well
85         global $currTheme;
86         $currTheme = $POST['default_theme'];
87         $_CONFIG['default_theme'] = $POST['default_theme'];
88
89         // Save theme
90         ADMIN_SAVE_SETTINGS($POST);
91 }
92
93 // Switch to testing mode
94 $THEME_MODE = "test";
95
96 // Generate output lines for the template
97 $OUT = ""; $SW = 2;
98 $result = SQL_QUERY("SELECT id, theme_path, theme_active, theme_ver, theme_name FROM "._MYSQL_PREFIX."_themes ORDER BY theme_path", __FILE__, __LINE__);
99 if (SQL_NUMROWS($result) > 0)
100 {
101         while(list($id, $unix, $active, $ver, $name) = SQL_FETCHROW($result))
102         {
103                 // Load theme in test mode
104                 require(PATH."theme/".$unix."/theme.php");
105
106                 // Is the loaded theme name != current theme name?
107                 $LINK = $unix;
108                 if ($unix != GET_CURR_THEME()) $LINK = "<A href=\"".URL."/modules.php?module=admin&amp;what=theme_edit&amp;default_theme=".$unix."\" title=\"".ADMIN_SET_AS_NEW_THEME."\">".$unix."</A>";
109
110                 // Prepare data for the row template
111                 $content = array(
112                         'sw'        => $SW,
113                         'id'        => $id,
114                         'active'    => $active,
115                         'link'      => $LINK,
116                         'name'      => $name,
117                         'is_act'    => TRANSLATE_YESNO($active),
118                         'email'     => "<A href=\"mailto:".$THEME_EMAIL."?Subject=[Theme:] ".$THEME_NAME." (".$unix.")"."\">".$THEME_AUTHOR."</A>",
119                         'url_link'  => DEREFERER($THEME_URL),
120                         'url_title' => $THEME_URL,
121                         'ver'       => $ver,
122                 );
123
124                 // Load row template and switch color
125                 $OUT .= LOAD_TEMPLATE("admin_theme_edit_row", true, $content);
126                 $SW = 3 - $SW;
127         }
128
129         // Free memory
130         SQL_FREERESULT($result);
131 } else {
132                 // No themes found???
133         $OUT .= "<TR>
134   <TD colspan=\"7\" class=\"bottom2\" height=\"60\">
135     ".LOAD_TEMPLATE("admin_settings_saved", true, ADMIN_NO_THEMES_FOUND)."
136   </TD>
137 </TR>\n";
138 }
139
140 define('__THEME_LIST', $OUT);
141
142 // Load template
143 LOAD_TEMPLATE("admin_theme_edit");
144
145 //
146 ?>