Re-added
[mailer.git] / inc / modules / admin / what-unlock_surfbar_urls.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/08/2008 *
4  * ================                             Last change: 09/08/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-unlock_surfbar_urls.php                     *
8  * -------------------------------------------------------------------- *
9  * Short description : Unlock pending URLs for surfbar                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Wartende URLs in der Surfbar freigeben           *
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 } // END - if
39
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
42
43 // Is the form sent?
44 if ((isset($_POST['unlock'])) && (is_array($_POST['id'])) && (count($_POST['id']) > 0)) {
45         // Unlock selected URLs
46         if (SURFBAR_ADMIN_UNLOCK_URL_IDS($_POST['id'])) {
47                 // Unlock done! :-)
48                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_UNLOCK_DONE);
49         } else {
50                 // Unlock failed!
51                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_UNLOCK_FAILED);
52         }
53 } elseif ((isset($_POST['reject'])) && (is_array($_POST['id'])) && (count($_POST['id']) > 0)) {
54         // Reject selected URLs
55         if (SURFBAR_ADMIN_REJECT_URL_IDS($_POST['id'])) {
56                 // Unlock done! :-)
57                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_UNLOCK_DONE);
58         } else {
59                 // Unlock failed!
60                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_UNLOCK_FAILED);
61         }
62 }
63
64 // List all URLs
65 $result = SQL_QUERY("SELECT id, userid, url, UNIX_TIMESTAMP(registered) AS registered
66 FROM "._MYSQL_PREFIX."_surfbar_urls
67 WHERE status='PENDING'
68 ORDER BY id ASC", __FILE__, __LINE__);
69
70 // Do we have some URLs left?
71 if (SQL_NUMROWS($result) > 0) {
72         // List all URLs
73         $OUT = ""; $SW = 2;
74         while ($content = SQL_FETCHARRAY($result)) {
75                 // "Translate"/add content
76                 $content['sw']         = $SW;
77                 $content['userid']     = ADMIN_USER_PROFILE_LINK($content['userid']);
78                 $content['url']        = FRAMETESTER($content['url']);
79                 $content['registered'] = MAKE_DATETIME($content['registered'], 2);
80
81                 // Load row template
82                 $OUT .= LOAD_TEMPLATE("admin_unlock_surfbar_urls_row", true, $content);
83
84                 // Switch color
85                 $SW = 3 - $SW;
86         } // END - while
87
88         // Load main template
89         LOAD_TEMPLATE("admin_unlock_surfbar_urls", false, $OUT);
90 } else {
91         // No URLs in surfbar
92         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_NO_URLS_FOUND);
93 }
94
95 // Free result
96 SQL_FREERESULT($result);
97
98 //
99 ?>