'what' files should be loaded only once
[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  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 // Init SQL
47 $sql = "SELECT
48         `id`,`sender`,`subject`,`text`,`receivers`,`payment_id`,`data_type`,`timestamp`,`url`,`target_send`,`cat_id`
49 FROM
50         `{?_MYSQL_PREFIX?}_pool`
51 WHERE
52         `data_type`='SEND' OR `data_type`='DELETED'
53 ORDER BY
54         `timestamp` DESC";
55
56 // Check for maximum pages
57 $result_maximum = SQL_QUERY($sql, __FILE__, __LINE__);
58
59 // Set offset an current page to default values
60 if (!isGetRequestElementSet('page'))   setGetRequestElement('page'  , 1);
61 if (!isGetRequestElementSet('offset')) setGetRequestElement('offset', getMailsPage());
62
63 // Add limitation to SQL string
64 $sql .= ' LIMIT ' . (getRequestElement('offset') * getRequestElement('page') - getRequestElement('offset')) . ', ' . getRequestElement('offset');
65
66 // Run SQL query for normal mails
67 $result = SQL_QUERY($sql, __FILE__, __LINE__);
68
69 // Calculate pages
70 $numPages = round(SQL_NUMROWS($result_maximum) / getMailsPage() + 0.5);
71
72 // Free the result which we don't need
73 SQL_FREERESULT($result_maximum);
74
75 if (!SQL_HASZERONUMS($result)) {
76         // Mail orders are in pool so we can display them
77
78         // Add navigation table rows
79         $content['top_email_nav']    = addEmailNavigation($numPages, getMailsPage(), true , 3, true);
80         $content['bottom_email_nav'] = addEmailNavigation($numPages, getMailsPage(), false, 3, true);
81
82         // List all entries
83         $OUT = '';
84         while ($pool = SQL_FETCHARRAY($result)) {
85                 // Check sent mails and clicks
86                 $result_mails = SQL_QUERY_ESC("SELECT `max_rec`,`clicks` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `pool_id`=%s LIMIT 1",
87                         array(bigintval($pool['id'])), __FILE__, __LINE__);
88
89                 // Load entries
90                 $pool = merge_array($pool, SQL_FETCHARRAY($result_mails));
91
92                 // Merge result
93                 SQL_FREERESULT($result_mails);
94
95                 // Unconfirmed mails
96                 $pool['unconfirmed'] = generateUnconfirmedAdminLink($pool['id'], ($pool['max_rec'] - $pool['clicks']), 'mid');
97
98                 // Prepare data for the row template
99                 $content['timestamp'] = generateDateTime($pool['timestamp'], 0);
100
101                 // Merge pool data with content
102                 $content = merge_array($content, $pool);
103
104                 // Load row template and switch colors
105                 $OUT .= loadTemplate('admin_email_archiv_row', true, $content);
106         } // END - while
107
108         // Remmber generated rows in array
109         $content['rows'] = $OUT;
110
111         // Load main template
112         loadTemplate('admin_email_archiv', false, $content);
113 } else {
114         // No mail orders fond
115         displayMessage('{--ADMIN_NO_MAILS_IN_POOL--}');
116 }
117
118 // Free memory
119 SQL_FREERESULT($result);
120
121 // [EOF]
122 ?>