Code-style applied, surfbar URLs can now be edited
[mailer.git] / inc / modules / admin / what-list_surfbar_urls.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/31/2008 *
4  * ================                             Last change: 08/31/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_surfbar_urls.php                       *
8  * -------------------------------------------------------------------- *
9  * Short description : List all URLs in surfbar and sync from mail pool *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle URLs in Surfbar auflisten und syncen        *
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 ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!is_admin())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } // END - if
39
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
42
43 // By default show the list...
44 $show = true;
45
46 // Edit or delete button hit?
47 if (isset($_POST['edit'])) {
48         // Delete entries (with confirmation)
49         ADMIN_EDIT_ENTRIES_CONFIRM(
50                 $_POST['id'],
51                 "surfbar_urls",
52                 array("id", "userid", "url", "reward", "costs"),
53                 array("bigintval", "ADD_MEMBER_SELECTION_BOX", "", "TRANSLATE_COMMA", "TRANSLATE_COMMA"),
54                 array("", array(false, true, true), "", "", "")
55         );
56         $show = false;
57 } elseif (isset($_POST['do_edit'])) {
58         // Delete entries (with confirmation)
59         ADMIN_EDIT_ENTRIES_CONFIRM(
60                 $_POST['id'],
61                 "surfbar_urls",
62                 array("", ""),
63                 array('reward' => "REVERT_COMMA", 'costs' => "REVERT_COMMA"),
64                 array('reward' => "", 'costs' => ""),
65                 true
66         );
67 } elseif (isset($_POST['delete'])) {
68         // Delete entries (with confirmation)
69         ADMIN_DELETE_ENTRIES_CONFIRM($_POST['id'], "surfbar_urls", array("id", "userid", "url", "registered"), array("bigintval", "ADMIN_USER_PROFILE_LINK", "FRAMETESTER", "MAKE_DATETIME"), array("", "", "", "2"));
70         $show = false;
71 } elseif (isset($_POST['remove'])) {
72         // Delete entries (with confirmation)
73         ADMIN_DELETE_ENTRIES_CONFIRM($_POST['id'], "surfbar_urls", array(), array(), array(), true);
74 }
75
76 // Show entries?
77 if (!$show) return false;
78
79 // List all URLs
80 $result = SQL_QUERY("SELECT id, userid, url, reward, costs, views_total, status, UNIX_TIMESTAMP(registered) AS registered, UNIX_TIMESTAMP(last_locked) AS last_locked, lock_reason
81 FROM "._MYSQL_PREFIX."_surfbar_urls
82 ORDER BY id ASC", __FILE__, __LINE__);
83
84 // Do we have some URLs left?
85 if (SQL_NUMROWS($result) > 0) {
86         // List all URLs
87         $OUT = ""; $SW = 2;
88         while ($content = SQL_FETCHARRAY($result)) {
89                 // "Translate"/add content
90                 $content['sw']          = $SW;
91                 $content['userid']      = ADMIN_USER_PROFILE_LINK($content['userid']);
92                 $content['url']         = FRAMETESTER($content['url']);
93                 $content['reward']      = TRANSLATE_COMMA($content['reward']);
94                 $content['costs']       = TRANSLATE_COMMA($content['costs']);
95                 $content['views_total'] = TRANSLATE_COMMA($content['views_total']);
96                 $content['status']      = SURFBAR_TRANSLATE_STATUS($content['status']);
97                 $content['registered']  = MAKE_DATETIME($content['registered'], 2);
98                 $content['last_locked'] = MAKE_DATETIME($content['last_locked'], 2);
99                 if (empty($content['lock_reason'])) $content['lock_reason'] = "---";
100
101                 // Load row template
102                 $OUT .= LOAD_TEMPLATE("admin_list_surfbar_urls_row", true, $content);
103
104                 // Switch color
105                 $SW = 3 - $SW;
106         } // END - while
107
108         // Load main template
109         LOAD_TEMPLATE("admin_list_surfbar_urls", false, $OUT);
110 } else {
111         // No URLs in surfbar
112         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_NO_URLS_FOUND);
113 }
114
115 // Free result
116 SQL_FREERESULT($result);
117
118 //
119 ?>