Mailer used in many places, we still need a good 'selling' title
[mailer.git] / inc / modules / member / what-rallyes.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 06/29/2004 *
4  * ================                             Last change: 08/22/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-rallyes.php                                 *
8  * -------------------------------------------------------------------- *
9  * Short description : Ref rallyes                                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Ref-Rallyes                                      *
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 - 2009 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         die();
42 } elseif (!isMember()) {
43         redirectToIndexMemberOnlyModule();
44 }
45
46 // Add description as navigation point
47 addMenuDescription('member', __FILE__);
48
49 if ((!isExtensionActive('rallye')) && (!isAdmin())) {
50         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('rallye'));
51         return;
52 } // END - if
53
54 // Check for possible running rallyes
55 $ADMIN = " AND d.is_active='Y'";
56 if (isAdmin()) $ADMIN = '';
57 $result = SQL_QUERY("SELECT
58         d.id, d.admin_id, a.login, d.title, d.descr, d.template, d.start_time, d.end_time, d.min_users, d.min_prices
59 FROM
60         `{?_MYSQL_PREFIX?}_rallye_data` AS d
61 INNER JOIN
62         `{?_MYSQL_PREFIX?}_admins` AS a
63 ON
64         d.admin_id=a.id
65 WHERE
66         d.notified='Y'".$ADMIN."
67 ORDER BY
68         d.end_time ASC
69 LIMIT 1", __FILE__, __LINE__);
70
71 if (SQL_NUMROWS($result) == 1) {
72         // Found some (normally one...
73         $content = SQL_FETCHARRAY($result);
74
75         $expired = false;
76         if ($content['end_time'] < time()) {
77                 // Rallye is expired
78                 $content['extras'] = getMessage('RALLYE_HAS_EXPIRED');
79                 $expired = true;
80         } elseif (time() >= ($content['end_time'] - getConfig('ONE_DAY'))) {
81                 // Rallye will expire in less one day!
82                 $content['extras'] = getMessage('RALLYE_EXPIRE_ONE_DAY');
83         } else {
84                 // Link to referal links page
85                 $content['extras'] = "<a href=\"{?URL?}/modules.php?module=login&amp;what=reflinks\">{--RALLYE_GET_REFLINK--}</a>";
86         }
87
88         // Set admin line (currently set to impressum, later to contact form)
89         // @TODO Reactivate this: $content['admin'] = "<a href=\"{?URL?}/modules.php?module=index&amp;what=impressum&amp;admin=".$content['admin_id']."\">".$content['login']."</a>";
90
91         // Handle description...
92         if ((empty($content['descr'])) && (!empty($content['template']))) {
93                 // Use description from template
94                 $content['descr'] = loadTemplate('rallye_' . $content['template'], true);
95         } // END - if
96
97         // Determine min_users/prices
98         $content['min_users']  = determineReferalRallyeMinimumUsers($content['min_users']);
99         $content['min_prices'] = determineReferalRallyeMinimumPrices($content['min_prices']);
100
101         // Set start and end time
102         $content['start'] = generateDateTime($content['start_time'], 1);
103         $content['end']   = generateDateTime($content['end_time']  , 1);
104
105         if ($expired === true) {
106                 $content['prices']       = addReferalRallyeWinners($content['id']);
107                 $content['top_users']    = "<div align=\"center\" class=\"big\">".$content['extras']."</div>";
108                 $content['can_win_this'] = getMessage('RALLYE_OUR_WINNERS_ARE');
109         } else {
110                 $content['prices']       = addReferalRallyePrices($content['id'], 'html');
111                 $content['top_users']    = addReferalRallyeTopUsers($content['id'], getMemberId());
112                 $content['can_win_this'] = getMessage('RALLYE_YOU_CAN_WIN');
113         }
114
115         // And load final template
116         loadTemplate('guest_rallye_show', false, $content);
117 } else {
118         // No rallye found so far
119         loadTemplate('guest_no_rallyes');
120 }
121
122 // Free result
123 SQL_FREERESULT($result);
124
125 // [EOF]
126 ?>