More double->single convertions
[mailer.git] / inc / modules / member / what-doubler.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 02/17/2005 *
4  * ================                             Last change: 02/17/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-doubler.php                                 *
8  * -------------------------------------------------------------------- *
9  * Short description : General doubling informations                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Allgemeine Informationen zum Verdoppen           *
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 - 2008 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')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 } elseif (!IS_MEMBER()) {
44         redirectToUrl('modules.php?module=index');
45 } elseif ((!EXT_IS_ACTIVE('doubler')) && (!IS_ADMIN())) {
46         addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveNotInstalledMessage('doubler'));
47         return;
48 }
49
50 // Add description as navigation point
51 ADD_DESCR('member', __FILE__);
52
53 // Percent values etc.
54 define('__CHARGE_VALUE', translateComma(getConfig('doubler_charge') * 100));
55 define('__REF_VALUE'   , translateComma(getConfig('doubler_ref') * 100));
56 define('__TOTAL_VALUE' , translateComma(getConfig('doubler_points')));
57 define('__MIN_VALUE'   , translateComma(getConfig('doubler_min')));
58 define('__MAX_VALUE'   , translateComma(getConfig('doubler_max')));
59
60 // Transfer referal ID
61 if (EXT_IS_ACTIVE('nickname')) {
62         // Load nickname from DB
63         $nick = NICKNAME_GET_NICK(getUserId());
64
65         if (!empty($nick)) {
66                 // Set nickname
67                 define('__USERID', $nick);
68         } else {
69                 // Use direct userid
70                 define('__USERID', getUserId());
71         }
72 } else {
73         // Use direct userid
74         define('__USERID', getUserId());
75 }
76
77 // Usage counter
78 define('__DOUBLER_COUNTER', translateComma(getConfig('doubler_counter')));
79
80 // Which mail-send-mode did the admin setup?
81 switch (getConfig('doubler_send_mode')) {
82         case 'DIRECT':
83                 define('DOUBLER_PAYOUT_TIME', getMessage('DOUBLER_PAYOUT_TIME_DIRECT'));
84                 break;
85
86         case 'RESET':
87                 define('DOUBLER_PAYOUT_TIME', getMessage('DOUBLER_PAYOUT_TIME_RESET'));
88                 break;
89
90         default:
91                 define('DOUBLER_PAYOUT_TIME', sprintf(getMessage('DOUBLER_PAYOUT_TIME_UNKNOWN'), getConfig('doubler_send_mode')));
92                 DEBUG_LOG(__FILE__, __LINE__, constant('DOUBLER_PAYOUT_TIME'));
93                 break;
94 }
95
96 // Generate table with already payed out doubles
97 define('__DOUBLER_PAYOUT_HISTORY', DOUBLER_GENERATE_TABLE(getUserId(), 'Y', 'N', 'DESC'));
98
99 // Generate table with next-to-run payouts
100 define('__DOUBLER_PAYOUT_NEXT', DOUBLER_GENERATE_TABLE(getUserId()));
101
102 // Generate table with refferal payouts
103 define('__DOUBLER_PAYOUT_REF', DOUBLER_GENERATE_TABLE(getUserId(), 'N', 'Y', 'DESC'));
104
105 // Generate timemark
106 define('__TIMEOUT_MARK', createFancyTime(getConfig('doubler_timeout')));
107
108 // Points left to double
109 define('__LEFT_VALUE', translateComma(DOUBLER_GET_TOTAL_POINTS_LEFT()));
110
111 // Load template
112 LOAD_TEMPLATE('member_doubler');
113
114 //
115 ?>