Updated TODOs.txt file.
[mailer.git] / ref.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/13/2003 *
4  * ===================                          Last change: 09/04/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ref.php                                          *
8  * -------------------------------------------------------------------- *
9  * Short description : Redirection for the referral link                *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Weiterleitungsscript fuer die Referral-Links     *
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 // Load security stuff here
34 require('inc/libs/security_functions.php');
35
36 // Init start time
37 $GLOBALS['__start_time'] = microtime(TRUE);
38
39 // Set module
40 $GLOBALS['__module']      = 'ref';
41 $GLOBALS['__output_mode'] = -1;
42
43 // Load the required file(s)
44 require('inc/config-global.php');
45
46 // Set content type for e.g. search engines
47 setContentType('text/html');
48
49 // No refid by default
50 $url = 'modules.php?module=index';
51
52 // Check for determined referral id
53 if ((isExtensionActive('user')) && (isValidReferralId()) && (isValidId(determineReferralId()))) {
54         // Run filter chain for updating referral data
55         runFilterChain('update_referral_data');
56
57         // Base URL for redirection
58         switch (getConfig('refid_target')) {
59                 case 'register':
60                         $url = 'modules.php?module=index&amp;what=register';
61                         break;
62
63                 case 'index':
64                         $url = 'modules.php?module=index';
65                         break;
66
67                 default: // Is not valid
68                         reportBug(__FILE__, __LINE__, 'Invalid refid target ' . getConfig('refid_target') . ' detected.');
69                         break;
70         } // END - switch
71 } // END - if
72
73 // Load the URL
74 redirectToUrl($url);
75
76 // [EOF]
77 ?>