f10a81ac98150f40be9dc229d31f379f7e821212
[mailer.git] / inc / modules / admin / what-list_notifications.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/07/2008 *
4  * ===================                          Last change: 10/07/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_notifications.php                      *
8  * -------------------------------------------------------------------- *
9  * Short description : See all notification emails (beg/active rallye)  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle Benachrichtigungen sehen (Bettel-/Aktiv-R.) *
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 // Init variables
49 $SQL2 = '';
50 $result_max = false;
51
52 // Set offset an current page to default values
53 if (!isGetRequestParameterSet('page'))   setGetRequestParameter('page'  , 1);
54 if (!isGetRequestParameterSet('offset')) setGetRequestParameter('offset', getConfig('mails_page'));
55
56 if (isExtensionActive('bonus')) {
57         // Bonus mails sent by you
58         $SQL2 = "SELECT
59         `id`, `subject`, `text`, `receivers`, `points`, `time`, `data_type`, `timestamp`, `url`, `cat_id`, `target_send`,
60         `mails_sent`, `clicks`, (`mails_sent` - `clicks) AS `unconfirmed`
61 FROM
62         `{?_MYSQL_PREFIX?}_bonus`
63 WHERE
64         `is_notify`='Y'
65 ORDER BY
66         `timestamp` DESC";
67
68         // Check for maximum pages
69         $result_max = SQL_QUERY($SQL2, __FILE__, __LINE__);
70 } else {
71         // Bonus extension required!
72         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED', 'bonus'));
73 }
74
75 // Create limitation line
76 $add = ' LIMIT ' . (bigintval(getRequestParameter('offset')) * bigintval(getRequestParameter('page')) - bigintval(getRequestParameter('offset'))) . ', ' . bigintval(getRequestParameter('offset'));
77
78 // Add limitation
79 if (!empty($SQL2)) $SQL2 .= $add;
80
81 if ((isExtensionActive('bonus')) && (SQL_NUMROWS($result_max) > 0) && (!empty($SQL2))) {
82         // Run SQL query for notification mails
83         $result_bonus = SQL_QUERY($SQL2, __FILE__, __LINE__);
84
85         // Load bonus mails only when extension is active
86         if (SQL_NUMROWS($result_bonus) > 0) {
87                 // Calculate pages
88                 $numPages = round(SQL_NUMROWS($result_bonus) / getConfig('mails_page') + 0.5);
89
90                 // List emails
91                 $OUT = ''; $content = array();
92                 while ($content = SQL_FETCHARRAY($result_bonus)) {
93                         // Add "unconfirmed-link"
94                         $content['unconfirmed_content'] = generateUnconfirmedAdminLink($content['id'], $content['unconfirmed']);
95
96                         // Prepare content
97                         $content['timestamp']   = generateDateTime($content['timestamp'], 0);
98
99                         // Load row template
100                         $OUT .= loadTemplate('admin_list_notify_emails_row', true, $content);
101                 } // END - if
102
103                 // Add navigation (without change box but with colspan=3)
104                 $content['nav'] = addEmailNavigation($numPages, getConfig('mails_page'), false, 3, true);
105
106                 // Prepare content
107                 $content['rows'] = $OUT;
108
109                 // Load main template
110                 loadTemplate('admin_list_notify_emails', false, $content);
111         }
112 } elseif ((SQL_NUMROWS($result_max) === 0) && (is_resource($result_max))) {
113         // No notifications found
114         loadTemplate('admin_settings_saved', false, getMessage('ADMIN_NO_NOTIFICATIONS'));
115 }
116
117 // [EOF]
118 ?>