Code rewritings, load base config improved and many minor fixes...
[mailer.git] / 0.2.1 / inc / modules / guest / action-themes.php
1 <?php\r
2 /************************************************************************\r
3  * MXChange v0.2.1                                    Start: 11/12/2004 *\r
4  * ================                             Last change: 11/12/2004 *\r
5  *                                                                      *\r
6  * -------------------------------------------------------------------- *\r
7  * File              : action-themes.php                                *\r
8  * -------------------------------------------------------------------- *\r
9  * Short description : Theme selector                                   *\r
10  * -------------------------------------------------------------------- *\r
11  * Kurzbeschreibung  : Theme-Auswahl                                    *\r
12  * -------------------------------------------------------------------- *\r
13  *                                                                      *\r
14  * -------------------------------------------------------------------- *\r
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
16  * For more information visit: http://www.mxchange.org                  *\r
17  *                                                                      *\r
18  * This program is free software; you can redistribute it and/or modify *\r
19  * it under the terms of the GNU General Public License as published by *\r
20  * the Free Software Foundation; either version 2 of the License, or    *\r
21  * (at your option) any later version.                                  *\r
22  *                                                                      *\r
23  * This program is distributed in the hope that it will be useful,      *\r
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
26  * GNU General Public License for more details.                         *\r
27  *                                                                      *\r
28  * You should have received a copy of the GNU General Public License    *\r
29  * along with this program; if not, write to the Free Software          *\r
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
31  * MA  02110-1301  USA                                                  *\r
32  ************************************************************************/\r
33 \r
34 // Some security stuff...\r
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))\r
36 {\r
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";\r
38         require($INC);\r
39 }\r
40 \r
41 // Load all active designs (or all if admin)\r
42 $WHERE = ""; $OUT = "";\r
43 if (!IS_ADMIN()) $WHERE = " WHERE theme_active='Y'";\r
44 $result_themes = SQL_QUERY("SELECT theme_path FROM "._MYSQL_PREFIX."_themes".$WHERE, __FILE__, __LINE__);\r
45 $num_themes = SQL_NUMROWS($result_themes);\r
46 \r
47 if ($num_themes > 1)\r
48 {\r
49         // If more than 1 is installed output selection box\r
50         $act = "";\r
51         if (!empty($GLOBALS['action'])) $act = SQL_ESCAPE($GLOBALS['action']);\r
52         $OUT = THEME_SELECTION_BOX("index", $act, $GLOBALS['what'], $result_themes);\r
53 }\r
54  elseif (($num_themes == 1) || ((!IS_ADMIN()) && ($num_themes == 0)))\r
55 {\r
56         // If there's only one just print it's name\r
57         global $THEME_NAME;\r
58         define('__THEME_NAME', $THEME_NAME);\r
59         $OUT = LOAD_TEMPLATE("theme_one", true);\r
60 }\r
61  elseif (IS_ADMIN())\r
62 {\r
63         // If there is no theme installed and there's an admin notify him!\r
64         $OUT = LOAD_TEMPLATE("admin_settings_saved", true, "<FONT class=\"admin_note\">".ADMIN_NO_THEME_INSTALLED_WARNING."</FONT>");\r
65 }\r
66 \r
67 // Remember\r
68 define('__THEME_SELECTION_CONTENT', $OUT);\r
69 \r
70 // Free memory\r
71 SQL_FREERESULT($result_themes);\r
72 \r
73 // Load final box template\r
74 LOAD_TEMPLATE("theme_select_box");\r
75 \r
76 //\r
77 ?>\r