b70e3aca81656f6249112157e7533fc413e8a531
[mailer.git] / inc / modules / admin / what-list_doubler.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 02/12/2004 *
4  * ===================                          Last change: 02/12/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_doubler.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : List doubler entries                             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Verdoppler-Eintraege 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  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!isAdmin())) {
41         die();
42 } // END - if
43
44 // Add description as navigation point
45 addMenuDescription('admin', __FILE__);
46
47 if (!isGetRequestElementSet('mode')) {
48         // Chosse the overview page as default
49         setRequestGetElement('mode', 'overview');
50 } else {
51         // Set table title automatically
52         if (!isGetRequestElementSet('select')) setRequestGetElement('select', 'all');
53
54         // Prepare header
55         $content['list_' . strtolower(getRequestElement('mode'))] = getMessage('ADMIN_DOUBLER_LIST_' . strtoupper(getRequestElement('mode')) . '_' . strtoupper(getRequestElement('select')).'');
56 }
57
58 // Load data for the template
59 switch (getRequestElement('mode')) {
60         case 'already':  // Already payed out points
61                 break;
62
63         case 'overview': // General overview page
64                 // Prepare links
65                 foreach (array('already_direct','already_ref','waiting_direct','waiting_ref') as $entry) {
66                         $content[$entry . '_link'] = '0';
67                 } // END - switch
68
69                 // Init sums
70                 $sumAlready = '0'; $sumWaiting = '0';
71
72                 // Number of direct already payouts and referal
73                 $cnt = countSumTotalData('Y','doubler','id','completed',true, " AND `is_ref`='N'");
74
75                 if ($cnt > 0) {
76                         // Something was payed out
77                         $sumAlready += $cnt;
78                         $content['already_direct_link'] = '<a href="{%url=modules.php?module=admin&amp;what=list_doubler&amp;mode=already&amp;select=direct%}">' . $cnt . '</a>';
79                 } // END - if
80
81                 $cnt = countSumTotalData('Y','doubler','id','completed',true, " AND `is_ref`='Y'");
82
83                 if ($cnt > 0) {
84                         // Something was payed out
85                         $sumAlready += $cnt;
86                         $content['already_ref_link'] = '<a href="{%url=modules.php?module=admin&amp;what=list_doubler&amp;mode=already&amp;select=ref%}">' . $cnt . '</a>';
87                 } // END - if
88
89                 // And the same for waiting pouts (direct and referal)
90                 $cnt = countSumTotalData('N','doubler','id','completed',true, " AND `is_ref`='N'");
91
92                 if ($cnt > 0) {
93                         // Something was payed out
94                         $sumWaiting += $cnt;
95                         $content['waiting_direct_link'] = '<a href="{%url=modules.php?module=admin&amp;what=list_doubler&amp;mode=waiting&amp;select=direct%}">' . $cnt . '</a>';
96                 } // END - if
97
98                 $cnt = countSumTotalData('N','doubler','id','completed',true, " AND `is_ref`='Y'");
99
100                 if ($cnt > 0) {
101                         // Something was payed out
102                         $sumWaiting += $cnt;
103                         $content['waiting_ref_link'] = '<a href="{%url=modules.php?module=admin&amp;what=list_doubler&amp;mode=waiting&amp;select=ref%}">' . $cnt . '</a>';
104                 } // END - if
105
106                 // Links for all
107                 $content['already_all_link'] = '<a href="{%url=modules.php?module=admin&amp;what=list_doubler&amp;mode=already&amp;select=all%}">' . $sumAlready . '</a>';
108                 $content['waiting_all_link'] = '<a href="{%url=modules.php?module=admin&amp;what=list_doubler&amp;mode=waiting&amp;select=all%}">' . $sumWaiting . '</a>';
109
110                 // All data is loaded here...
111                 break;
112 } // END - switch
113
114 // Load mode template
115 loadTemplate('admin_list_doubler_' . getRequestElement('mode'), false, $content);
116
117 // [EOF]
118 ?>