Some template fixes, width='600' removed from many templates, surfbar admin extended...
[mailer.git] / inc / modules / admin / what-list_surfbar_urls.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/31/2008 *
4  * ================                             Last change: 08/31/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_surfbar_urls.php                       *
8  * -------------------------------------------------------------------- *
9  * Short description : List all URLs in surfbar and sync from mail pool *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle URLs in Surfbar auflisten und syncen        *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003, 2004, 2005, 2006, 2007 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 ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!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 // List all URLs
44 $result = SQL_QUERY("SELECT id, userid, url, reward, views_total, status, UNIX_TIMESTAMP(registered) AS registered, UNIX_TIMESTAMP(last_locked) AS last_locked, lock_reason
45 FROM "._MYSQL_PREFIX."_surfbar_urls
46 ORDER BY id ASC", __FILE__, __LINE__);
47
48 // Do we have some URLs left?
49 if (SQL_NUMROWS($result) > 0) {
50         // List all URLs
51         $OUT = ""; $SW = 2;
52         while ($content = SQL_FETCHARRAY($result)) {
53                 // "Translate"/add content
54                 $content['sw']          = $SW;
55                 $content['userid']      = ADMIN_USER_PROFILE_LINK($content['userid']);
56                 $content['url']         = FRAMETESTER($content['url']);
57                 $content['reward']      = TRANSLATE_COMMA($content['reward']);
58                 $content['views_total'] = TRANSLATE_COMMA($content['views_total']);
59                 $content['status']      = SURFBAR_TRANSLATE_STATUS($content['status']);
60                 $content['registered']  = MAKE_DATETIME($content['registered'], 2);
61                 $content['last_locked'] = MAKE_DATETIME($content['last_locked'], 2);
62                 if (empty($content['lock_reason'])) $content['lock_reason'] = "---";
63
64                 // Load row template
65                 $OUT .= LOAD_TEMPLATE("admin_list_surfbar_urls_row", true, $content);
66
67                 // Switch color
68                 $SW = 3 - $SW;
69         } // END - while
70
71         // Load main template
72         LOAD_TEMPLATE("admin_list_surfbar_urls", false, $OUT);
73 } else {
74         // No URLs in surfbar
75         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_NO_URLS_FOUND);
76 }
77
78 // Free result
79 SQL_FREERESULT($result);
80
81 //
82 ?>