Numerous ext-sponsor fixes and HTML rewrites (sorry for lame description)
[mailer.git] / inc / modules / admin / what-list_sponsor.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 04/25/2005 *
4  * ===================                          Last change: 05/19/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_sponsor.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : List all sponsors and their details              *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle Sponsoren und deren Details auflisten       *
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 if (isGetRequestParameterSet('id')) {
49         // Show detailed informations to a sponsor
50         $result = SQL_QUERY_ESC("SELECT
51         `company`, `position`, `gender`, `surname`, `family`, `street_nr1`, `street_nr2`, `zip`, `city`, `country`,
52         `phone`, `fax`, `cell`, `email`, `url`, `tax_ident`,
53         `status`, `sponsor_created`, `last_online`, `last_change`, `receive_warnings`,
54         `points_amount`, `points_used`, `remote_addr`, `warning_interval`, `refid`, `ref_count`
55 FROM
56         `{?_MYSQL_PREFIX?}_sponsor_data`
57 WHERE
58         `id`=%s LIMIT 1",
59         array(bigintval(getRequestParameter('id'))), __FILE__, __LINE__);
60
61         if (SQL_NUMROWS($result) == 1) {
62                 // Load sponsor details
63                 $content = SQL_FETCHARRAY($result);
64
65                 // Check if an entry is empty
66                 foreach ($content as $k => $v) {
67                         if ((empty($v)) && ($v != 0)) $content[$k] = '---';
68                 } // END - foreach
69
70                 // Prepare all data for the template
71                 //  Sponsor's id
72                 $content['id']              = getRequestParameter('id');
73                 //  Contact data
74                 $content['email_link']      = generateEmailLink($content['email'], 'sponsor_data');
75                 //  Timestamps
76                 $content['sponsor_created'] = generateDateTime($content['sponsor_created'], 2);
77                 $content['last_online']     = generateDateTime($content['last_online'], 2);
78                 $content['last_change']     = generateDateTime($content['last_change'], 2);
79                 //  Orders total
80                 $content['orders']          = countSumTotalData(bigintval(getRequestParameter('id')), 'sponsor_orders', 'id', 'sponsor_id', true);
81
82                 // Load template
83                 loadTemplate('admin_list_sponsor_details', false, $content);
84         } else {
85                 // Sponsor not found
86                 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_SPONSOR_404', bigintval(getRequestParameter('id'))));
87         }
88
89         // Free result
90         SQL_FREERESULT($result);
91 } elseif (isGetRequestParameterSet('refid')) {
92         // Search for sponsor
93         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`='%s' LIMIT 1",
94                 array(bigintval(getRequestParameter('refid'))), __FILE__, __LINE__);
95         if (SQL_NUMROWS($result) == 1) {
96                 // Free memory
97                 SQL_FREERESULT($result);
98
99                 // Sponsor found so let's list all his referals
100                 $result = SQL_QUERY_ESC("SELECT
101         `id`, `gender`, `surname`, `family`, `email`, `status`,
102         `sponsor_created`, `last_online`, `points_amount`, `points_used`,
103         `remote_addr`, `ref_count`
104 FROM
105         `{?_MYSQL_PREFIX?}_sponsor_data`
106 WHERE
107         `refid`='%s'
108 ORDER BY
109         `id` ASC",
110                 array(bigintval(getRequestParameter('refid'))), __FILE__, __LINE__);
111
112                 if (!SQL_HASZERONUMS($result)) {
113                         // List refs now
114                         // Free memory
115                         SQL_FREERESULT($result);
116                 } else {
117                         // No refs made so far
118                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_SPONSOR_REFS_404', '<a href="{%url=modules.php?module=admin&amp;what=list_sponsor&amp;id=' . bigintval(getRequestParameter('refid')) . '%}">' . bigintval(getRequestParameter('refid')) . '</a>'));
119                 }
120         } else {
121                 // Sponsor not found
122                 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_SPONSOR_404', bigintval(getRequestParameter('refid'))));
123         }
124 } else {
125         // List all sponsors
126         $result_main = SQL_QUERY("SELECT
127         `id`, `gender`, `surname`, `family`, `email`, `status`,
128         `sponsor_created`, `last_online`, `points_amount`, `points_used`, `remote_addr`
129 FROM
130         `{?_MYSQL_PREFIX?}_sponsor_data`
131 ORDER BY
132         `id` ASC", __FILE__, __LINE__);
133
134         if (!SQL_HASZERONUMS($result_main)) {
135                 // At least one sponsor found!
136                 $OUT = '';
137                 while ($content = SQL_FETCHARRAY($result_main)) {
138                         // Transfer data to array
139                         $content['email']           = generateEmailLink($content['email'], 'sponsor_data');
140                         $content['sponsor_created'] = generateDateTime($content['sponsor_created'], 2);
141                         $content['last_online']     = generateDateTime($content['last_online'], 2);
142                         $content['points']          = ($content['points_amount'] - $content['points_used']);
143
144                         // Load row template
145                         $OUT .= loadTemplate('admin_list_sponsor_row', true, $content);
146                 } // END - while
147
148                 // Free memory
149                 SQL_FREERESULT($result_main);
150
151                 // Load final template
152                 loadTemplate('admin_list_sponsor', false, $OUT);
153         } else {
154                 // No sponsors registered so far
155                 loadTemplate('admin_settings_saved', false, '{--ADMIN_SPONSOR_NONE_REGISTERED--}');
156         }
157 }
158
159 // [EOF]
160 ?>