Script rewritten to setConfigEntry(), getConfig() and incrementConfigEntry()
[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 } elseif (!EXT_IS_ACTIVE("theme")) {
39         addFatalMessage(sprintf(EXTENSION_PROBLEM_NOT_INSTALLED, "theme"));
40         return;
41 }
42
43 // Add description as navigation point
44 ADD_DESCR("admin", __FILE__);
45
46 // Check for selected themes
47 $SEL = 0;
48 if (!empty($_POST['sel'])) $SEL = SELECTION_COUNT($_POST['sel']);
49 if ($SEL > 0) {
50         $OUT = "";
51         foreach ($_POST['sel'] as $id => $sel) {
52                 $SQL = "";
53                 // Shall I de-/activate or delete themes?
54                 if (isset($_POST['status'])) {
55                         // Change status
56                         if ($_POST['active'][$id] == "Y") {
57                                 $SQL = "UPDATE `{!_MYSQL_PREFIX!}_themes` SET theme_active='N' WHERE id='".$id."' LIMIT 1";
58                         } else {
59                                 $SQL = "UPDATE `{!_MYSQL_PREFIX!}_themes` SET theme_active='Y' WHERE id='".$id."' LIMIT 1";
60                         }
61                         $OUT = ADMIN_THEMES_UPDATED;
62                 } elseif (isset($_POST['del'])) {
63                         // Delete themes
64                         $SQL = "DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_themes` WHERE id='".$id."' LIMIT 1";
65                         $OUT = ADMIN_THEMES_DELETED;
66                 }
67
68                 // Run SQL command?
69                 if (!empty($SQL)) {
70                         // Run it
71                         $result = SQL_QUERY($SQL, __FILE__, __LINE__);
72
73                         // Rebuild cache
74                         REBUILD_CACHE("themes", "them");
75                 }
76         }
77
78         // Output generated?
79         if (empty($OUT)) ADMIN_THEME_NO_OUTPUT;
80 } elseif (!empty($_GET['default_theme'])) {
81         // Escape string from input
82         $POST['default_theme'] = SQL_ESCAPE($_GET['default_theme']);
83
84         // Set session
85         set_session('mxchange_theme', $POST['default_theme']);
86
87         // Set it in config and current theme as well
88         global $currTheme;
89         $currTheme = $POST['default_theme'];
90         setConfigEntry('default_theme', $POST['default_theme']);
91
92         // Save theme
93         ADMIN_SAVE_SETTINGS($POST);
94 }
95
96 // Switch to testing mode
97 $THEME_MODE = "test";
98
99 // Generate output lines for the template
100 $OUT = ""; $SW = 2;
101 $result = SQL_QUERY("SELECT id, theme_path, theme_active, theme_ver, theme_name FROM `{!_MYSQL_PREFIX!}_themes` ORDER BY theme_path", __FILE__, __LINE__);
102 if (SQL_NUMROWS($result) > 0) {
103         while (list($id, $unix, $active, $ver, $name) = SQL_FETCHROW($result)) {
104                 // Construct IFN
105                 $INC = sprintf("theme/%s/theme.php",
106                         $unix
107                 );
108
109                 // Load theme in test mode
110                 LOAD_INC($INC);
111
112                 // Is the loaded theme name != current theme name?
113                 $LINK = $unix;
114                 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>";
115
116                 // Prepare data for the row template
117                 $content = array(
118                         'sw'        => $SW,
119                         'id'        => $id,
120                         'active'    => $active,
121                         'link'      => $LINK,
122                         'name'      => $name,
123                         'is_act'    => TRANSLATE_YESNO($active),
124                         'email'     => "<a href=\"mailto:".$THEME_EMAIL."?Subject=[Theme:] ".$THEME_NAME." (".$unix.")"."\">".$THEME_AUTHOR."</a>",
125                         'url_link'  => DEREFERER($THEME_URL),
126                         'url_title' => $THEME_URL,
127                         'ver'       => $ver,
128                 );
129
130                 // Load row template and switch color
131                 $OUT .= LOAD_TEMPLATE("admin_theme_edit_row", true, $content);
132                 $SW = 3 - $SW;
133         }
134
135         // Free memory
136         SQL_FREERESULT($result);
137 } else {
138                 // No themes found???
139         $OUT .= "<tr>
140   <td colspan=\"7\" class=\"bottom2\" height=\"60\">
141     ".LOAD_TEMPLATE("admin_settings_saved", true, getMessage('ADMIN_NO_THEMES_FOUND'))."
142   </td>
143 </tr>\n";
144 }
145
146 define('__THEME_LIST', $OUT);
147
148 // Load template
149 LOAD_TEMPLATE("admin_theme_edit");
150
151 //
152 ?>