]> git.mxchange.org Git - mailer.git/blob - inc/modules/sponsor/welcome.php
First batch of removal of the headers needed for revision-functions.php
[mailer.git] / inc / modules / sponsor / welcome.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 09/17/2005 *
4  * ===================                          Last change: 05/19/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : welcome.php                                      *
8  * -------------------------------------------------------------------- *
9  * Short description : Welcome page for sponsor area                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Willkommensseite des Sponsorenbereiches          *
12  * -------------------------------------------------------------------- *
13  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
14  * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
15  * For more information visit: http://mxchange.org                      *
16  *                                                                      *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or    *
20  * (at your option) any later version.                                  *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Some security stuff...
34 if (!defined('__SECURITY')) {
35         exit();
36 } elseif (!isExtensionActive('sponsor')) {
37         displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=sponsor%}');
38         return;
39 } elseif (!isSponsor()) {
40         // No sponsor!
41         addFatalMessage(__FILE__, __LINE__, '{--SPONSOR_ONLY_AREA_ENTERED--}');
42         return;
43 }
44
45 // Load some data
46 $result = sqlQueryEscaped('SELECT
47         `id`,
48         `gender`,
49         `surname`,
50         `family`,
51         (`points_amount` - `points_used`) AS `points`
52 FROM
53         `{?_MYSQL_PREFIX?}_sponsor_data`
54 WHERE
55         `id`=%s
56 LIMIT 1',
57         array(
58                 bigintval(getSession('sponsor_id'))
59         ), __FILE__, __LINE__);
60
61 // Fetch data
62 $content = sqlFetchArray($result);
63
64 // Free memory
65 sqlFreeResult($result);
66
67 // Load main template
68 $GLOBALS['sponsor_output'] = loadTemplate('sponsor_welcome', TRUE, $content);
69
70 // [EOF]
71 ?>