A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[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  * $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 - 2008 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')) || (!IS_ADMIN())) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
42         require($INC);
43 } // END - if
44
45 // Add description as navigation point
46 ADD_DESCR('admin', __FILE__);
47
48 // Is the form sent?
49 if ((REQUEST_ISSET_POST(('unlock'))) && (is_array(REQUEST_POST('id'))) && (count(REQUEST_POST('id')) > 0)) {
50         // Unlock selected URLs
51         if (SURFBAR_ADMIN_UNLOCK_URL_IDS(REQUEST_POST('id'))) {
52                 // Unlock done! :-)
53                 LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_UNLOCK_DONE'));
54         } else {
55                 // Unlock failed!
56                 LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_UNLOCK_FAILED'));
57         }
58 } elseif ((REQUEST_ISSET_POST(('reject'))) && (is_array(REQUEST_POST('id'))) && (count(REQUEST_POST('id')) > 0)) {
59         // Reject selected URLs
60         if (SURFBAR_ADMIN_REJECT_URL_IDS(REQUEST_POST('id'))) {
61                 // Unlock done! :-)
62                 LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_UNLOCK_DONE'));
63         } else {
64                 // Unlock failed!
65                 LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_UNLOCK_FAILED'));
66         }
67 }
68
69 // List all URLs
70 $result = SQL_QUERY("SELECT id, userid, url, UNIX_TIMESTAMP(registered) AS registered
71 FROM `{!_MYSQL_PREFIX!}_surfbar_urls`
72 WHERE `status`='PENDING'
73 ORDER BY `id` ASC", __FILE__, __LINE__);
74
75 // Do we have some URLs left?
76 if (SQL_NUMROWS($result) > 0) {
77         // List all URLs
78         $OUT = ''; $SW = 2;
79         while ($content = SQL_FETCHARRAY($result)) {
80                 // "Translate"/add content
81                 $content['sw']          = $SW;
82                 $content['userid']      = ADMIN_USER_PROFILE_LINK($content['userid']);
83                 $content['framekiller'] = FRAMETESTER($content['url']);
84                 $content['registered']  = MAKE_DATETIME($content['registered'], 2);
85
86                 // Load row template
87                 $OUT .= LOAD_TEMPLATE("admin_unlock_surfbar_urls_row", true, $content);
88
89                 // Switch color
90                 $SW = 3 - $SW;
91         } // END - while
92
93         // Load main template
94         LOAD_TEMPLATE("admin_unlock_surfbar_urls", false, $OUT);
95 } else {
96         // No URLs in surfbar
97         LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_NO_URLS_FOUND'));
98 }
99
100 // Free result
101 SQL_FREERESULT($result);
102
103 //
104 ?>