Re-added
[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  *                                                                      *
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[5~?module=index");
40 } elseif (!EXT_IS_ACTIVE("doubler")) {
41         ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "doubler");
42         return;
43 }
44
45 // Add description as navigation point
46 ADD_DESCR("member", basename(__FILE__));
47
48 // Percent values etc.
49 define('__CHARGE_VALUE', TRANSLATE_COMMA($_CONFIG['doubler_charge'] * 100));
50 define('__REF_VALUE'   , TRANSLATE_COMMA($_CONFIG['doubler_ref'] * 100));
51 define('__TOTAL_VALUE' , TRANSLATE_COMMA($_CONFIG['doubler_points']));
52 define('__MIN_VALUE'   , TRANSLATE_COMMA($_CONFIG['doubler_min']));
53 define('__MAX_VALUE'   , TRANSLATE_COMMA($_CONFIG['doubler_max']));
54
55 // Transfer referral ID
56 if (EXT_IS_ACTIVE("nickname"))
57 {
58         // Load nickname from DB
59         $nick = NICKNAME_GET_NICK($GLOBALS['userid']);
60
61         if (!empty($nick))
62         {
63                 // Set nickname
64                 define('__USERID', $nick);
65         }
66          else
67         {
68                 // Use direct userid
69                 define('__USERID', $GLOBALS['userid']);
70         }
71 }
72  else
73 {
74         // Use direct userid
75         define('__USERID', $GLOBALS['userid']);
76 }
77
78 // Usage counter
79 define('__DOUBLER_COUNTER', $_CONFIG['doubler_counter']);
80
81 // Which mail-send-mode did the admin setup?
82 switch ($_CONFIG['doubler_send_mode'])
83 {
84 case "DIRECT":
85         define('DOUBLER_PAYOUT_TIME', DOUBLER_PAYOUT_TIME_DIRECT);
86         break;
87
88 case "RESET":
89         define('DOUBLER_PAYOUT_TIME', DOUBLER_PAYOUT_TIME_RESET);
90         break;
91 }
92
93 // Generate table with already payed out doubles
94 define('__DOUBLER_PAYOUT_HISTORY', DOUBLER_GENERATE_TABLE($GLOBALS['userid'], "Y", "N", "DESC"));
95
96 // Generate table with next-to-run payouts
97 define('__DOUBLER_PAYOUT_NEXT', DOUBLER_GENERATE_TABLE($GLOBALS['userid']));
98
99 // Generate table with refferal payouts
100 define('__DOUBLER_PAYOUT_REF', DOUBLER_GENERATE_TABLE($GLOBALS['userid'], "N", "Y", "DESC"));
101
102 // Generate timemark
103 define('__TIMEOUT_MARK', CREATE_FANCY_TIME($_CONFIG['doubler_timeout']));
104
105 // Points left to double
106 define('__LEFT_VALUE', DOUBLER_GET_TOTAL_POINTS_LEFT());
107
108 // Load template
109 LOAD_TEMPLATE("member_doubler");
110
111 //
112 ?>