8a1043942c7930e6f14a4057f5c7d95e6f15cec4
[mailer.git] / inc / modules / member / what-surfbar_start.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/05/2008 *
4  * ================                             Last change: 09/08/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-surfbar_start.php                           *
8  * -------------------------------------------------------------------- *
9  * Short description : Gives some infos to the surfbar and launch link  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Gibt ein paar Infos zur Surfbar und Startlink    *
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         // Not logged in
45         redirectToUrl('modules.php?module=index');
46 } elseif ((!EXT_IS_ACTIVE('surfbar')) && (!IS_ADMIN())) {
47         addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveMessage('surfbar'));
48         return;
49 }
50
51 // Add description as navigation point
52 ADD_DESCR('member', __FILE__);
53
54 // Prepare content for output
55 $content = array(
56         'surfbar_static_reward' => translateComma(getConfig('surfbar_static_reward')),
57         'surfbar_static_time'   => createFancyTime(getConfig('surfbar_static_time')),
58         'surfbar_static_lock'   => createFancyTime(getConfig('surfbar_static_lock')),
59         'surfbar_total_urls'    => SURFBAR_GET_TOTAL_URLS('ACTIVE', '0')
60 );
61
62 // In dynamic mode we need some more data
63 if (getConfig('surfbar_pay_model') == 'DYNAMIC') {
64         // Total URLs
65         $content = array(
66                 'surfbar_dynamic_percent' => translateComma(getConfig('surfbar_dynamic_percent')),
67                 'surfbar_total_urls'      => SURFBAR_GET_TOTAL_URLS('ACTIVE', '0'),
68                 'surfbar_user_urls'       => SURFBAR_GET_TOTAL_USER_URLS(),
69                 'surfbar_total_online'    => SURFBAR_DETERMINE_TOTAL_ONLINE(),
70                 'surfbar_total_users'     => translateComma(GET_TOTAL_DATA('CONFIRMED', 'user_data', 'userid', 'status', true)),
71                 'surfbar_min_reward'      => translateComma(SURFBAR_CALCULATE_DYNAMIC_MIN_VALUE()),
72                 'surfbar_max_reward'      => translateComma(SURFBAR_CALCULATE_DYNAMIC_MAX_VALUE()),
73                 'surfbar_min_time'        => createFancyTime(SURFBAR_CALCULATE_DYNAMIC_MIN_VALUE()),
74                 'surfbar_max_time'        => createFancyTime(SURFBAR_CALCULATE_DYNAMIC_MAX_VALUE()),
75                 'surfbar_dynamic_lock'    => createFancyTime(SURFBAR_CALCULATE_DYNAMIC_LOCK()),
76                 'surfbar_static_reward'   => translateComma(getConfig('surfbar_static_reward')),
77                 'surfbar_static_time'     => createFancyTime(getConfig('surfbar_static_time'))
78         );
79 } // END - if
80
81 // Load the template
82 LOAD_TEMPLATE('member_surfbar_start_' . strtolower(getConfig('surfbar_pay_model')), false, $content);
83
84 // Load surfbar link template
85 LOAD_TEMPLATE('member_surfbar_link');
86
87 //
88 ?>