More rewrites, and output-mode fixed (we should documentate this)
[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 - 2009 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         die();
42 } elseif (!isMember()) {
43         redirectToIndexMemberOnlyModule();
44 }
45
46 // Add description as navigation point
47 addMenuDescription('member', __FILE__);
48
49 if ((!isExtensionActive('surfbar')) && (!isAdmin())) {
50         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('surfbar'));
51         return;
52 } // END - if
53
54 // Load user URLs
55 $URLs = SURFBAR_GET_USER_URLS();
56
57 // Are there entries or form is submitted?
58 if ((isFormSent()) && (isPostRequestElementSet(('action'))) && (isPostRequestElementSet('id'))) {
59         // Process the form
60         if (SURFBAR_MEMBER_DO_FORM(postRequestArray(), $URLs)) {
61                 // Action performed but shall we display it?
62                 if (((postRequestElement('action') != 'edit') && (postRequestElement('action') != "delete")) || (isPostRequestElementSet(('execute')))) {
63                         // Display "action done" message if action is wether 'edit' nor 'delete' or has been executed
64                         loadTemplate('admin_settings_saved', false, getMessage('MEMBER_SURFBAR_ACTION_DONE'));
65                 } // END - if
66         } else {
67                 // Something went wrong
68                 loadTemplate('admin_settings_saved', false, getMessage('MEMBER_SURFBAR_ACTION_FAILED'));
69         }
70 } elseif (count($URLs) > 0) {
71         // List all URLs
72         $OUT = ''; $SW = 2;
73         foreach ($URLs as $id => $content) {
74                 // "Translate"/insert data
75                 $content['sw'] = $SW;
76                 $content['url'] = generateDerefererUrl($content['url']);
77                 if ($content['views_total'] > 0) {
78                         // Include link to stats
79                         $content['views_total'] = "[<a href=\"{?URL?}/modules.php?module=login&amp;what=surfbar_list\">".translateComma($content['views_total'])."</a>]";
80                 } // END - if
81                 $content['registered']  = generateDateTime($content['registered'], 2);
82                 $content['last_locked'] = generateDateTime($content['last_locked'], 2);
83                 $content['actions']     = SURFBAR_MEMBER_ACTIONS($content['id'], $content['status']);
84                 $content['status']      = translateSurfbarUrlStatus($content['status']);
85                 if (empty($content['lock_reason'])) {
86                         // Fixes some HTML problems with empty cells
87                         $content['lock_reason'] = '---';
88                 } // END - if
89
90                 // Load row template
91                 $OUT .= loadTemplate('member_surfbar_list_row', true, $content);
92
93                 // Switch color
94                 $SW = 3 - $SW;
95         } // END - if
96
97         // Load main template
98         loadTemplate('member_surfbar_list', false, $OUT);
99 } else {
100         // No URLs booked so far
101         loadTemplate('admin_settings_saved', false, getMessage('MEMBER_SURFBAR_NO_URLS_FOUND'));
102 }
103
104 //
105 ?>