HTML->XHTML preparation (still *A LOT* to convert
[mailer.git] / inc / modules / admin / what-config_refid.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 11/23/2004 *
4  * ================                             Last change: 11/23/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_refid.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : Setup default referal ID                         *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Standart Referal-ID einstellen                   *
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')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", __FILE__);
42
43 if (isset($_POST['ok'])) {
44         // Save data
45         ADMIN_SAVE_SETTINGS($_POST);
46 } else {
47         // Prepare contants for the template
48         define('__MEMBER_SELECTION', ADD_MEMBER_SELECTION_BOX(getConfig('def_refid'), false, true, true, "def_refid"));
49
50         switch (getConfig('refid_target')) {
51                 case "index":
52                         define('__DEF_RT_INDEX'   , " selected=\"selected\"");
53                         define('__DEF_RT_REGISTER', "");
54                         break;
55
56                 case "register":
57                         define('__DEF_RT_INDEX'   , "");
58                         define('__DEF_RT_REGISTER', " selected=\"selected\"");
59                         break;
60         } // END - switch
61
62         switch (getConfig('select_user_zero_refid')) {
63                 case "Y":
64                         define('__RAND_REFID_Y', " selected=\"selected\"");
65                         define('__RAND_REFID_N', "");
66                         break;
67
68                 case "N":
69                         define('__RAND_REFID_Y', "");
70                         define('__RAND_REFID_N', " selected=\"selected\"");
71                         break;
72         } // END - switch
73
74         // Prepare content
75         $content = array(
76                 'user_min_confirmed' => getConfig('user_min_confirmed')
77         );
78
79         // Load template
80         LOAD_TEMPLATE("admin_config_refid", false, $content);
81 }
82
83 // [EOF]
84 ?>