More queries now depends on UNIX_TIMESTAMP() SQL function, wrong index in autopurge...
[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 } // END - if
54
55 // List all URLs
56 $result = SQL_QUERY("SELECT id, userid, url, reward, costs, UNIX_TIMESTAMP(registered) AS registered
57 FROM "._MYSQL_PREFIX."_surfbar_urls
58 WHERE status='PENDING'
59 ORDER BY id ASC", __FILE__, __LINE__);
60
61 // Do we have some URLs left?
62 if (SQL_NUMROWS($result) > 0) {
63         // List all URLs
64         $OUT = ""; $SW = 2;
65         while ($content = SQL_FETCHARRAY($result)) {
66                 // "Translate"/add content
67                 $content['sw']         = $SW;
68                 $content['userid']     = ADMIN_USER_PROFILE_LINK($content['userid']);
69                 $content['url']        = FRAMETESTER($content['url']);
70                 $content['costs']      = TRANSLATE_COMMA($content['costs']);
71                 $content['reward']     = TRANSLATE_COMMA($content['reward']);
72                 $content['registered'] = MAKE_DATETIME($content['registered'], 2);
73
74                 // Load row template
75                 $OUT .= LOAD_TEMPLATE("admin_unlock_surfbar_urls_row", true, $content);
76
77                 // Switch color
78                 $SW = 3 - $SW;
79         } // END - while
80
81         // Load main template
82         LOAD_TEMPLATE("admin_unlock_surfbar_urls", false, $OUT);
83 } else {
84         // No URLs in surfbar
85         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_NO_URLS_FOUND);
86 }
87
88 // Free result
89 SQL_FREERESULT($result);
90
91 //
92 ?>