Updated copyright year.
[mailer.git] / inc / modules / guest / action-themes.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/12/2004 *
4  * ===================                          Last change: 11/12/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : action-themes.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Theme selector                                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Theme-Auswahl                                    *
12  * -------------------------------------------------------------------- *
13  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
14  * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
15  * For more information visit: http://mxchange.org                      *
16  *                                                                      *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or    *
20  * (at your option) any later version.                                  *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Some security stuff...
34 if (!defined('__SECURITY')) {
35         exit();
36 } elseif (!isBlockModeEnabled()) {
37         // Non-block mode detected
38         return;
39 }
40
41 if ((!isExtensionActive('theme')) && (!isAdmin())) {
42         displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=theme%}');
43         return;
44 } // END - if
45
46 // Get total num
47 if (isAdmin()) {
48         // Load all themes for admin
49         $num_themes = countSumTotalData('', 'themes', 'id', '', TRUE);
50 } else {
51         // Load only active designs for user
52         $num_themes = countSumTotalData('Y', 'themes', 'id', 'theme_active', TRUE);
53 }
54
55 // Default is no box
56 $OUT = '';
57
58 // Choose from it
59 if ($num_themes > 1) {
60         // If more than 1 is installed output selection box
61         $OUT = generateThemeSelectionBox();
62 } elseif (($num_themes == 1) || ((!isAdmin()) && ($num_themes == '0'))) {
63         // If there's only one just output it's name
64         $OUT = loadTemplate('theme_one', TRUE, getCurrentThemeName());
65 } elseif (isAdmin()) {
66         // If there is no theme installed and there's an admin notify him!
67         $OUT = '{--ADMIN_NO_THEME_INSTALLED_WARNING--}';
68 }
69
70 // Load final box template
71 $GLOBALS['rows'] .= loadTemplate('theme_select_box', TRUE, $OUT);
72
73 // [EOF]
74 ?>