More rewrites to make use of (cached) wrapper functions
[mailer.git] / inc / modules / admin / what-email_archiv.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 09/28/2003 *
4  * ===================                          Last change: 04/03/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-email_archiv .php                           *
8  * -------------------------------------------------------------------- *
9  * Short description : See send emails details of ordered mails         *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle  Mails ansehen die versand wurden           *
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  * Mod-Copyright (c) 2004 by Robert Niedziela                           *
40  * www.megacomputing.de                                                 *
41  ************************************************************************/
42
43 // Some security stuff...
44 if ((!defined('__SECURITY')) || (!isAdmin())) {
45         die();
46 } // END - if
47
48 // Add description as navigation point
49 addMenuDescription('admin', __FILE__);
50
51 // Init SQL
52 $sql = "SELECT
53         `id`, `sender`, `subject`, `text`, `receivers`, `payment_id`, `data_type`, `timestamp`, `url`, `target_send`, `cat_id`
54 FROM
55         `{?_MYSQL_PREFIX?}_pool`
56 WHERE
57         `data_type`='SEND' OR `data_type`='DELETED'
58 ORDER BY
59         `timestamp` DESC";
60
61 // Check for maximum pages
62 $result_maximum = SQL_QUERY($sql, __FILE__, __LINE__);
63
64 // Set offset an current page to default values
65 if (!isGetRequestParameterSet('page'))   setGetRequestParameter('page'  , 1);
66 if (!isGetRequestParameterSet('offset')) setGetRequestParameter('offset', getConfig('mails_page'));
67
68 // Add limitation to SQL string
69 $sql .= ' LIMIT ' . (getRequestParameter('offset') * getRequestParameter('page') - getRequestParameter('offset')) . ', ' . getRequestParameter('offset');
70
71 // Run SQL query for normal mails
72 $result = SQL_QUERY($sql, __FILE__, __LINE__);
73
74 // Calculate pages
75 $numPages = round(SQL_NUMROWS($result_maximum) / getConfig('mails_page') + 0.5);
76
77 // Free the result which we don't need
78 SQL_FREERESULT($result_maximum);
79
80 if (!SQL_HASZERONUMS($result)) {
81         // Mail orders are in pool so we can display them
82
83         // Add navigation table rows
84         $content['top_email_nav']    = addEmailNavigation($numPages, getConfig('mails_page'), true , 3, true);
85         $content['bottom_email_nav'] = addEmailNavigation($numPages, getConfig('mails_page'), false, 3, true);
86
87         // List all entries
88         $OUT = '';
89         while ($pool = SQL_FETCHARRAY($result)) {
90                 // Check sent mails and clicks
91                 $result_mails = SQL_QUERY_ESC("SELECT `max_rec`, `clicks` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `pool_id`=%s LIMIT 1",
92                         array(bigintval($pool['id'])), __FILE__, __LINE__);
93
94                 // Load entries
95                 $pool = merge_array($pool, SQL_FETCHARRAY($result_mails));
96
97                 // Merge result
98                 SQL_FREERESULT($result_mails);
99
100                 // Unconfirmed mails
101                 $pool['unconfirmed'] = generateUnconfirmedAdminLink($pool['id'],  ($pool['max_rec'] - $pool['clicks']), 'mid');
102
103                 // Prepare data for the row template
104                 $content['timestamp'] = generateDateTime($pool['timestamp'], 0);
105
106                 // Merge pool data with content
107                 $content = merge_array($content, $pool);
108
109                 // Load row template and switch colors
110                 $OUT .= loadTemplate('admin_email_archiv_row', true, $content);
111         } // END - while
112
113         // Remmber generated rows in array
114         $content['rows'] = $OUT;
115
116         // Load main template
117         loadTemplate('admin_email_archiv', false, $content);
118 } else {
119         // No mail orders fond
120         loadTemplate('admin_settings_saved', false, '{--ADMIN_NO_MAILS_IN_POOL--}');
121 }
122
123 // Free memory
124 SQL_FREERESULT($result);
125
126 // [EOF]
127 ?>