]> git.mxchange.org Git - mailer.git/blob - 0.2.1/inc/modules/member/action-themes.php
Copyright updated
[mailer.git] / 0.2.1 / inc / modules / member / 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  elseif (!IS_LOGGED_IN())\r
41 {\r
42         LOAD_URL(URL."/modules.php?module=index");\r
43 }\r
44 \r
45 // Load all active designs (or all if admin)\r
46 $WHERE = ""; $OUT = "";\r
47 if (!IS_ADMIN()) $WHERE = " WHERE theme_active='Y'";\r
48 $result_themes = SQL_QUERY("SELECT theme_path FROM "._MYSQL_PREFIX."_themes".$WHERE, __FILE__, __LINE__);\r
49 $num_themes = SQL_NUMROWS($result_themes);\r
50 \r
51 if ($num_themes > 1)\r
52 {\r
53         // If more than 1 is installed output selection box\r
54         $act = ""; $wht = "";\r
55         if (!empty($GLOBALS['action'])) $act = SQL_ESCAPE($GLOBALS['action']);\r
56         if (!empty($GLOBALS['what']))   $wht = SQL_ESCAPE($GLOBALS['what']);\r
57         $OUT = THEME_SELECTION_BOX("login", $act, $wht, $result_themes);\r
58 }\r
59  elseif (($num_themes == 1) || ((!IS_ADMIN()) && ($num_themes == 0)))\r
60 {\r
61         // If there's only one just print it's name\r
62         global $THEME_NAME;\r
63         define('__THEME_NAME', $THEME_NAME);\r
64         $OUT = LOAD_TEMPLATE("theme_one", true);\r
65 }\r
66  elseif (IS_ADMIN())\r
67 {\r
68         // If there is no theme installed and there's an admin notify him!\r
69         $OUT = LOAD_TEMPLATE("admin_settings_saved", true, "<FONT class=\"admin_note\">".ADMIN_NO_THEME_INSTALLED_WARNING."</FONT>");\r
70 }\r
71 \r
72 // Remember\r
73 define('__THEME_SELECTION_CONTENT', $OUT);\r
74 \r
75 // Free memory\r
76 SQL_FREERESULT($result_themes);\r
77 \r
78 // Load final box template\r
79 LOAD_TEMPLATE("theme_select_box");\r
80 \r
81 //\r
82 ?>\r