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