bb53c0656b321357061ec1dfc1b2a7d28e68ade0
[mailer.git] / inc / modules / guest / what-doubler.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 02/17/2005 *
4  * ================                             Last change: 02/18/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 (!EXT_IS_ACTIVE("doubler")) {
39         ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "doubler");
40         return;
41 }
42
43 // Add description as navigation point
44 ADD_DESCR("guest", __FILE__);
45
46 // Percent values etc.
47 define('__CHARGE_VALUE', TRANSLATE_COMMA($_CONFIG['doubler_charge'] * 100));
48 define('__REF_VALUE'   , TRANSLATE_COMMA($_CONFIG['doubler_ref'] * 100));
49 define('__TOTAL_VALUE' , TRANSLATE_COMMA($_CONFIG['doubler_points']));
50 define('__MIN_VALUE'   , TRANSLATE_COMMA($_CONFIG['doubler_min']));
51 define('__MAX_VALUE'   , TRANSLATE_COMMA($_CONFIG['doubler_max']));
52
53 // Transfer referal ID
54 define('__REFID', $GLOBALS['refid']);
55
56 // Usage counter
57 define('__DOUBLER_COUNTER', $_CONFIG['doubler_counter']);
58
59 // Which mail-send-mode did the admin setup?
60 switch ($_CONFIG['doubler_send_mode'])
61 {
62 case "DIRECT":
63         define('DOUBLER_PAYOUT_TIME', DOUBLER_PAYOUT_TIME_DIRECT);
64         break;
65
66 case "RESET":
67         define('DOUBLER_PAYOUT_TIME', DOUBLER_PAYOUT_TIME_RESET);
68         break;
69 }
70
71 // Generate table with already payed out doubles
72 define('__DOUBLER_PAYOUT_HISTORY', DOUBLER_GENERATE_TABLE("0", "Y", "N", "DESC"));
73
74 // Generate table with next-to-run payouts
75 define('__DOUBLER_PAYOUT_NEXT', DOUBLER_GENERATE_TABLE());
76
77 // Generate timemark
78 define('__TIMEOUT_MARK', CREATE_FANCY_TIME($_CONFIG['doubler_timeout']));
79
80 // Points left to double
81 define('__LEFT_VALUE', DOUBLER_GET_TOTAL_POINTS_LEFT());
82
83 // Load template
84 LOAD_TEMPLATE("guest_doubler");
85
86 //
87 ?>