A lot CSS classes rewritten, please update all your themes.
[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  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
42         die();
43 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 // Is the form sent?
49 if ((isPostRequestParameterSet('unlock')) && (is_array(postRequestParameter('url_id'))) && (count(postRequestParameter('url_id')) > 0)) {
50         // Unlock selected URLs
51         if (SURFBAR_ADMIN_UNLOCK_URL_IDS(postRequestParameter('url_id'))) {
52                 // Unlock done! :-)
53                 loadTemplate('admin_settings_saved', false, '{--ADMIN_SURFBAR_UNLOCK_DONE--}');
54         } else {
55                 // Unlock failed!
56                 loadTemplate('admin_settings_saved', false, '{--ADMIN_SURFBAR_UNLOCK_FAILED--}');
57         }
58 } elseif ((isPostRequestParameterSet('reject')) && (is_array(postRequestParameter('url_id'))) && (count(postRequestParameter('url_id')) > 0)) {
59         // Reject selected URLs
60         if (SURFBAR_ADMIN_REJECT_URL_IDS(postRequestParameter('url_id'))) {
61                 // Unlock done! :-)
62                 loadTemplate('admin_settings_saved', false, '{--ADMIN_SURFBAR_UNLOCK_DONE--}');
63         } else {
64                 // Unlock failed!
65                 loadTemplate('admin_settings_saved', false, '{--ADMIN_SURFBAR_UNLOCK_FAILED--}');
66         }
67 }
68
69 // List all URLs
70 $result = SQL_QUERY("SELECT
71         `url_id`,
72         `url_userid`,
73         `url`,
74         UNIX_TIMESTAMP(`url_registered`) AS `url_registered`
75 FROM
76         `{?_MYSQL_PREFIX?}_surfbar_urls`
77 WHERE
78         `url_status`='PENDING'
79 ORDER BY
80         `url_id` ASC", __FILE__, __LINE__);
81
82 // Do we have some URLs left?
83 if (!SQL_HASZERONUMS($result)) {
84         // List all URLs
85         $OUT = '';
86         while ($content = SQL_FETCHARRAY($result)) {
87                 // "Translate"/add content
88                 $content['url_registered'] = generateDateTime($content['url_registered'], 2);
89
90                 // Load row template
91                 $OUT .= loadTemplate('admin_unlock_surfbar_urls_row', true, $content);
92         } // END - while
93
94         // Load main template
95         loadTemplate('admin_unlock_surfbar_urls', false, $OUT);
96 } else {
97         // No URLs in surfbar
98         loadTemplate('admin_settings_saved', false, '{--ADMIN_SURFBAR_NO_URLS_FOUND--}');
99 }
100
101 // Free result
102 SQL_FREERESULT($result);
103
104 // [EOF]
105 ?>