Mailer used in many places, we still need a good 'selling' title
[mailer.git] / inc / modules / admin / what-unlock_surfbar_urls.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!isAdmin())) {
41         die();
42 } // END - if
43
44 // Add description as navigation point
45 addMenuDescription('admin', __FILE__);
46
47 // Is the form sent?
48 if ((isPostRequestElementSet(('unlock'))) && (is_array(postRequestElement('id'))) && (count(postRequestElement('id')) > 0)) {
49         // Unlock selected URLs
50         if (SURFBAR_ADMIN_UNLOCK_URL_IDS(postRequestElement('id'))) {
51                 // Unlock done! :-)
52                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_UNLOCK_DONE'));
53         } else {
54                 // Unlock failed!
55                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_UNLOCK_FAILED'));
56         }
57 } elseif ((isPostRequestElementSet(('reject'))) && (is_array(postRequestElement('id'))) && (count(postRequestElement('id')) > 0)) {
58         // Reject selected URLs
59         if (SURFBAR_ADMIN_REJECT_URL_IDS(postRequestElement('id'))) {
60                 // Unlock done! :-)
61                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_UNLOCK_DONE'));
62         } else {
63                 // Unlock failed!
64                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_UNLOCK_FAILED'));
65         }
66 }
67
68 // List all URLs
69 $result = SQL_QUERY("SELECT
70         `id`, `userid`, `url`, UNIX_TIMESTAMP(`registered`) AS registered
71 FROM
72         `{?_MYSQL_PREFIX?}_surfbar_urls`
73 WHERE
74         `status`='PENDING'
75 ORDER BY
76         `id` ASC", __FILE__, __LINE__);
77
78 // Do we have some URLs left?
79 if (SQL_NUMROWS($result) > 0) {
80         // List all URLs
81         $OUT = ''; $SW = 2;
82         while ($content = SQL_FETCHARRAY($result)) {
83                 // "Translate"/add content
84                 $content['sw']          = $SW;
85                 $content['userid']      = generateUserProfileLink($content['userid']);
86                 $content['framekiller'] = generateFrametesterUrl($content['url']);
87                 $content['registered']  = generateDateTime($content['registered'], 2);
88
89                 // Load row template
90                 $OUT .= loadTemplate('admin_unlock_surfbar_urls_row', true, $content);
91
92                 // Switch color
93                 $SW = 3 - $SW;
94         } // END - while
95
96         // Load main template
97         loadTemplate('admin_unlock_surfbar_urls', false, $OUT);
98 } else {
99         // No URLs in surfbar
100         loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_NO_URLS_FOUND'));
101 }
102
103 // Free result
104 SQL_FREERESULT($result);
105
106 // [EOF]
107 ?>