a57b9ea8fa20e322b76cbcb65658127833261ec0
[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")) && (!IS_ADMIN())) {
41         ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "doubler");
42         return;
43 }
44
45 // Add description as navigation point
46 ADD_DESCR("member", __FILE__);
47
48 // Percent values etc.
49 define('__CHARGE_VALUE', TRANSLATE_COMMA(getConfig('doubler_charge') * 100));
50 define('__REF_VALUE'   , TRANSLATE_COMMA(getConfig('doubler_ref') * 100));
51 define('__TOTAL_VALUE' , TRANSLATE_COMMA(getConfig('doubler_points')));
52 define('__MIN_VALUE'   , TRANSLATE_COMMA(getConfig('doubler_min')));
53 define('__MAX_VALUE'   , TRANSLATE_COMMA(getConfig('doubler_max')));
54
55 // Transfer referal 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', TRANSLATE_COMMA(getConfig('doubler_counter')));
80
81 // Which mail-send-mode did the admin setup?
82 switch (getConfig('doubler_send_mode')) {
83 case "DIRECT":
84         define('DOUBLER_PAYOUT_TIME', DOUBLER_PAYOUT_TIME_DIRECT);
85         break;
86
87 case "RESET":
88         define('DOUBLER_PAYOUT_TIME', DOUBLER_PAYOUT_TIME_RESET);
89         break;
90 }
91
92 // Generate table with already payed out doubles
93 define('__DOUBLER_PAYOUT_HISTORY', DOUBLER_GENERATE_TABLE($GLOBALS['userid'], "Y", "N", "DESC"));
94
95 // Generate table with next-to-run payouts
96 define('__DOUBLER_PAYOUT_NEXT', DOUBLER_GENERATE_TABLE($GLOBALS['userid']));
97
98 // Generate table with refferal payouts
99 define('__DOUBLER_PAYOUT_REF', DOUBLER_GENERATE_TABLE($GLOBALS['userid'], "N", "Y", "DESC"));
100
101 // Generate timemark
102 define('__TIMEOUT_MARK', CREATE_FANCY_TIME(getConfig('doubler_timeout')));
103
104 // Points left to double
105 define('__LEFT_VALUE', TRANSLATE_COMMA(DOUBLER_GET_TOTAL_POINTS_LEFT()));
106
107 // Load template
108 LOAD_TEMPLATE("member_doubler");
109
110 //
111 ?>