2 /************************************************************************
3 * MXChange v0.2.1 Start: 09/08/2008 *
4 * ================ Last change: 09/08/2008 *
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 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
32 ************************************************************************/
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
40 // Add description as navigation point
41 ADD_DESCR("admin", __FILE__);
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'])) {
48 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_UNLOCK_DONE);
51 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_UNLOCK_FAILED);
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'])) {
57 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_UNLOCK_DONE);
60 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_UNLOCK_FAILED);
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__);
70 // Do we have some URLs left?
71 if (SQL_NUMROWS($result) > 0) {
74 while ($content = SQL_FETCHARRAY($result)) {
75 // "Translate"/add content
77 $content['userid'] = ADMIN_USER_PROFILE_LINK($content['userid']);
78 $content['framekiller'] = FRAMETESTER($content['url']);
79 $content['registered'] = MAKE_DATETIME($content['registered'], 2);
82 $OUT .= LOAD_TEMPLATE("admin_unlock_surfbar_urls_row", true, $content);
89 LOAD_TEMPLATE("admin_unlock_surfbar_urls", false, $OUT);
92 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_NO_URLS_FOUND);
96 SQL_FREERESULT($result);