Overall performance increased
[mailer.git] / inc / modules / admin / what-config_order.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/22/2004 *
4  * ================                             Last change: 09/22/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_order.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : Configuration for order page                     *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Konfiguration der Mailbuchungsseite              *
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", basename(__FILE__));
42
43 if (isset($_POST['ok'])) {
44         // Save data
45         ADMIN_SAVE_SETTINGS($_POST);
46 } else {
47         // Prepare constants for the template
48         switch ($_CONFIG['order_max_full'])
49         {
50         case "ORDER":
51                 define('__ORDER_DEFAULT', " checked");
52                 define('__MAX_DEFAULT'  , "");
53                 break;
54
55         case "MAX":
56                 define('__ORDER_DEFAULT', "");
57                 define('__MAX_DEFAULT'  , " checked");
58                 break;
59         }
60
61         // Minimum mails / order
62         define('__MIN_VALUE', $_CONFIG['order_min']);
63
64         // Sorting mode (ascending / descending)
65         switch ($_CONFIG['order_mode'])
66         {
67         case "ASC":
68                 define('__ASC_DEFAULT' , " selected=\"selected\"");
69                 define('__DESC_DEFAULT', "");
70                 break;
71
72         case "DESC":
73                 define('__ASC_DEFAULT' , "");
74                 define('__DESC_DEFAULT', " selected=\"selected\"");
75                 break;
76         }
77
78         // Transfer other config data into constants for the template (DO NOT set $_CONFIG as global in LOAD_TEMPLATE!!!)
79         define('_CFG_UNCONFIRMED'   , $_CONFIG['unconfirmed']);
80         define('_CFG_MAX_TLENGTH'   , $_CONFIG['max_tlength']);
81
82         if ($_CONFIG['test_text'] == "N") {
83                 define('_CFG_TEST_TEXT_N', " checked");
84                 define('_CFG_TEST_TEXT_Y', "");
85         } else {
86                 define('_CFG_TEST_TEXT_N', "");
87                 define('_CFG_TEST_TEXT_Y', " checked");
88         }
89
90         switch ($_CONFIG['repay_deleted_mails']) {
91                 case "REPAY":
92                         define('_CFG_REPAY_POINTS_REPAY'  , " selected=\"selected\"");
93                         define('_CFG_REPAY_POINTS_JACKPOT', "");
94                         define('_CFG_REPAY_POINTS_SHRED'  , "");
95                         break;
96
97                 case "JACKPOT":
98                         define('_CFG_REPAY_POINTS_REPAY'  , "");
99                         define('_CFG_REPAY_POINTS_JACKPOT', " selected=\"selected\"");
100                         define('_CFG_REPAY_POINTS_SHRED'  , "");
101                         break;
102
103                 case "SHRED":
104                         define('_CFG_REPAY_POINTS_REPAY'  , "");
105                         define('_CFG_REPAY_POINTS_JACKPOT', "");
106                         define('_CFG_REPAY_POINTS_SHRED'  , " selected=\"selected\"");
107                         break;
108         }
109
110         if ($_CONFIG['test_subj'] == "N") {
111                 define('_CFG_TEST_SUBJ_N', " checked");
112                 define('_CFG_TEST_SUBJ_Y', "");
113         } else {
114                 define('_CFG_TEST_SUBJ_N', "");
115                 define('_CFG_TEST_SUBJ_Y', " checked");
116         }
117
118         if ($_CONFIG['url_blacklist'] == "N") {
119                 define('_CFG_URL_BLIST_N', " checked");
120                 define('_CFG_URL_BLIST_Y', "");
121         } else {
122                 define('_CFG_URL_BLIST_N', "");
123                 define('_CFG_URL_BLIST_Y', " checked");
124         }
125
126         // Selection list
127         define('__ORDER_SELECT', ORDER_SELECT_OPTION_LIST($_CONFIG['order_select']));
128
129         // Load template
130         LOAD_TEMPLATE("admin_config_order");
131 }
132 //
133 ?>