Surfbar member actions now listable
[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 FROM "._MYSQL_PREFIX."_surfbar_actions ORDER BY id ASC", __FILE__, __LINE__);
45
46 // Entries found?
47 if (SQL_NUMROWS($result) > 0) {
48         // List all entries
49         $OUT = ""; $SW = 2;
50         while ($content = SQL_FETCHARRAY($result)) {
51                 // "Translate" some data
52                 $content['status']     = constant(sprintf("SURFBAR_URL_STATUS_%s", $content['status']));
53                 $content['action']     = constant(sprintf("MEMBER_SURFBAR_ACTION_%s_SUBMIT", $content['action']));
54
55                 // New status set?
56                 if (!is_null($content['new_status'])) {
57                         // Translate it
58                         $content['new_status'] = constant(sprintf("SURFBAR_URL_STATUS_%s", $content['new_status']));
59                 } else {
60                         // "Do nothing" status
61                         $content['new_status'] = SURFBAR_URL_STATUS_NONE;
62                 }
63
64                 // Add color
65                 $content['sw'] = $SW;
66
67                 // Load row template
68                 $OUT .= LOAD_TEMPLATE("admin_list_surfbar_actions_row", true, $content);
69
70                 // Switch color
71                 $SW = 3 - $SW;
72         } // END - while
73
74         // Load main template
75         LOAD_TEMPLATE("admin_list_surfbar_actions", false, $OUT);
76 } else {
77         // No entries found, very bad!
78         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_NO_ACTIONS);
79 }
80
81 // Free result
82 SQL_FREERESULT($result);
83
84 //
85 ?>