Fix for fatal error and naming convention applied
[mailer.git] / inc / modules / member / what-surfbar_list.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/17/2008 *
4  * ================                             Last change: 09/17/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-surfbar_list.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : Surfbar URL statistics                           *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Surfbar-Statistiken                              *
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')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 } elseif (!IS_MEMBER()) {
44         redirectToUrl('modules.php?module=index');
45 } elseif ((!EXT_IS_ACTIVE('surfbar')) && (!IS_ADMIN())) {
46         addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), 'surfbar'));
47         return;
48 }
49
50 // Add description as navigation point
51 ADD_DESCR('member', __FILE__);
52
53 // Load user URLs
54 $URLs = SURFBAR_GET_USER_URLS();
55
56 // Are there entries or form is submitted?
57 if ((isFormSent()) && (REQUEST_ISSET_POST(('action'))) && (REQUEST_ISSET_POST('id'))) {
58         // Process the form
59         if (SURFBAR_MEMBER_DO_FORM(REQUEST_POST_ARRAY(), $URLs)) {
60                 // Action performed but shall we display it?
61                 if (((REQUEST_POST('action') != 'edit') && (REQUEST_POST('action') != "delete")) || (REQUEST_ISSET_POST(('execute')))) {
62                         // Display "action done" message if action is wether 'edit' nor 'delete' or has been executed
63                         LOAD_TEMPLATE('admin_settings_saved', false, getMessage('MEMBER_SURFBAR_ACTION_DONE'));
64                 } // END - if
65         } else {
66                 // Something went wrong
67                 LOAD_TEMPLATE('admin_settings_saved', false, getMessage('MEMBER_SURFBAR_ACTION_FAILED'));
68         }
69 } elseif (count($URLs) > 0) {
70         // List all URLs
71         $OUT = ''; $SW = 2;
72         foreach ($URLs as $id => $content) {
73                 // "Translate"/insert data
74                 $content['sw'] = $SW;
75                 $content['url'] = DEREFERER($content['url']);
76                 if ($content['views_total'] > 0) {
77                         // Include link to stats
78                         $content['views_total'] = "[<a href=\"{!URL!}/modules.php?module=login&amp;what=surfbar_list\">".translateComma($content['views_total'])."</a>]";
79                 } // END - if
80                 $content['registered']  = generateDateTime($content['registered'], '2');
81                 $content['last_locked'] = generateDateTime($content['last_locked'], '2');
82                 $content['actions']     = SURFBAR_MEMBER_ACTIONS($content['id'], $content['status']);
83                 $content['status']      = surfbarTranslateUserStatus($content['status']);
84                 if (empty($content['lock_reason'])) {
85                         // Fixes some HTML problems with empty cells
86                         $content['lock_reason'] = '---';
87                 } // END - if
88
89                 // Load row template
90                 $OUT .= LOAD_TEMPLATE("member_surfbar_list_row", true, $content);
91
92                 // Switch color
93                 $SW = 3 - $SW;
94         } // END - if
95
96         // Load main template
97         LOAD_TEMPLATE("member_surfbar_list", false, $OUT);
98 } else {
99         // No URLs booked so far
100         LOAD_TEMPLATE('admin_settings_saved', false, getMessage('MEMBER_SURFBAR_NO_URLS_FOUND'));
101 }
102
103 //
104 ?>