Re-added
[mailer.git] / inc / modules / member / what-unconfirmed.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/19/2003 *
4  * ===============                              Last change: 07/13/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-unconfirmed.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : Unconfirmed mails                                *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Unbestaetigte Mails                              *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif (!IS_MEMBER()) {
39         LOAD_URL("modules.php?module=index");
40 } elseif (!EXT_IS_ACTIVE("mailid")) {
41         LOAD_URL("modules.php?module=login");
42 }
43
44 // Add description as navigation point
45 ADD_DESCR("member", basename(__FILE__));
46
47 if (EXT_IS_ACTIVE("bonus")) {
48         // Load bonus ID
49         $result = SQL_QUERY_ESC("SELECT stats_id, bonus_id, link_type FROM "._MYSQL_PREFIX."_user_links WHERE userid=%s ORDER BY bonus_id DESC",
50          array($GLOBALS['userid']), __FILE__, __LINE__);
51 } else {
52         // Don't load bonus ID
53         $result = SQL_QUERY_ESC("SELECT stats_id, stats_id, link_type FROM "._MYSQL_PREFIX."_user_links WHERE userid=%s ORDER BY stats_id DESC",
54          array($GLOBALS['userid']), __FILE__, __LINE__);
55 }
56
57 if (SQL_NUMROWS($result) > 0)
58 {
59         // Please confirm these mails!
60         $sum = 0; $SW = 2; $OUT = "";
61         while (list($id, $id2, $type) = SQL_FETCHROW($result))
62         {
63                 // Load data from stats table...
64                 $cat = "";
65                 switch ($type)
66                 {
67                 case "NORMAL":
68                         $result_data = SQL_QUERY_ESC("SELECT subject, subject, timestamp_ordered, cat_id, payment_id, pool_id FROM "._MYSQL_PREFIX."_user_stats WHERE id=%s LIMIT 1",
69                          array(bigintval($id)), __FILE__, __LINE__);
70                         $type = "mailid"; $DATA = $id; $PROBLEM = NORMAL_MAIL_PROBLEM;
71                         break;
72
73                 case "BONUS":
74                         $result_data = SQL_QUERY_ESC("SELECT subject, text, timestamp, cat_id, points, id FROM "._MYSQL_PREFIX."_bonus WHERE id=%s LIMIT 1",
75                          array(bigintval($id2)), __FILE__, __LINE__);
76                         $type = "bonusid"; $DATA = $id2; $PROBLEM = BONUS_MAIL_PROBLEM;
77                         break;
78                 }
79
80                 if (SQL_NUMROWS($result_data) == 1)
81                 {
82                         // Mail was found!
83                         list($subject, $text, $timestamp, $cat, $pay, $pool) = SQL_FETCHROW($result_data);
84                         SQL_FREERESULT($result_data);
85                         if ($type == "NORMAL")
86                         {
87                                 $pay = GET_PAY_POINTS($pay, "payment");
88                                 $result_text = SQL_QUERY_ESC("SELECT text FROM "._MYSQL_PREFIX."_pool WHERE id=%s LIMIT 1",
89                                  array(bigintval($pool)), __FILE__, __LINE__);
90                                 list($text) = SQL_FETCHROW($result_text);
91                                 SQL_FREERESULT($result_text);
92                         }
93                         if (empty($subject)) $subject = DEFAULT_SUBJECT_LINE;
94                         if (empty($text))    $text    = "---";
95                         $subject = COMPILE_CODE($subject);
96
97                         // Prepare data for template
98                         $content = array(
99                                 'sw'     => $SW,
100                                 'uid'    => $GLOBALS['userid'],
101                                 'data'   => $DATA,
102                                 'type'   => $type,
103                                 'subj'   => $subject,
104                                 'text'   => COMPILE_CODE($text),
105                                 'stamp'  => MAKE_DATETIME($timestamp, "0"),
106                                 'cat'    => GET_CATEGORY($cat),
107                                 'points' => TRANSLATE_COMMA($pay),
108                         );
109
110                         // Load row template and count points
111                         $OUT .= LOAD_TEMPLATE("member_unconfirmed_row", true, $content);
112                         $sum += $pay;
113                 }
114                  else
115                 {
116                         // Prepare data for template
117                         $content = array(
118                                 'sw'    => $SW,
119                                 'data'  => $DATA,
120                                 'probl' => $PROBLEM,
121                         );
122
123                         // Problem with mail detected
124                         $OUT .= LOAD_TEMPLATE("member_unconfirmed_404", true, $content);
125                 }
126                 $SW = 3 - $SW;
127         }
128
129         // Free memory
130         SQL_FREERESULT($result);
131
132         // Remember total points
133         define('__TOTAL_POINTS', TRANSLATE_COMMA($sum));
134
135         // Remember all generated rows in constant for the template
136         define('__UNCONFIRMED_ROWS', $OUT);
137
138         // Load main template
139         LOAD_TEMPLATE("member_unconfirmed_table");
140 }
141  else
142 {
143         // No mails left to confirm... :)
144         LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_NO_MAILS_TO_CONFIRM);
145 }
146
147 //
148 ?>