Previous fix fixed, a lot constants rewritten (unfinished)
[mailer.git] / inc / modules / admin / what-list_surfbar_actions.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/12/2008 *
4  * ================                             Last change: 10/12/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_surfbar_actions.php                    *
8  * -------------------------------------------------------------------- *
9  * Short description : List surfbar member actions                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Auflistung von Mitgliederaktionen der Surfbar    *
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 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", __FILE__);
42
43 // Load all actions
44 $result = SQL_QUERY("SELECT `id`, `status`, `action`, `new_status`
45 FROM `{!_MYSQL_PREFIX!}_surfbar_actions`
46 ORDER BY `status` ASC, `action` ASC", __FILE__, __LINE__);
47
48 // Entries found?
49 if (SQL_NUMROWS($result) > 0) {
50         // List all entries
51         $OUT = ""; $SW = 2;
52         while ($content = SQL_FETCHARRAY($result)) {
53                 // "Translate" some data
54                 $content['status']     = constant(sprintf("SURFBAR_URL_STATUS_%s", $content['status']));
55                 $content['action']     = constant(sprintf("MEMBER_SURFBAR_ACTION_%s_SUBMIT", $content['action']));
56
57                 // New status set?
58                 if (!is_null($content['new_status'])) {
59                         // Translate it
60                         $content['new_status'] = constant(sprintf("SURFBAR_URL_STATUS_%s", $content['new_status']));
61                 } else {
62                         // "Do nothing" status
63                         $content['new_status'] = SURFBAR_URL_STATUS_NONE;
64                 }
65
66                 // Add color
67                 $content['sw'] = $SW;
68
69                 // Load row template
70                 $OUT .= LOAD_TEMPLATE("admin_list_surfbar_actions_row", true, $content);
71
72                 // Switch color
73                 $SW = 3 - $SW;
74         } // END - while
75
76         // Load main template
77         LOAD_TEMPLATE("admin_list_surfbar_actions", false, $OUT);
78 } else {
79         // No entries found, very bad!
80         LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_SURFBAR_NO_ACTIONS'));
81 }
82
83 // Free result
84 SQL_FREERESULT($result);
85
86 //
87 ?>