30509c2edf6fe755e4810ff9a2a9a7b98f30cb81
[mailer.git] / inc / modules / admin / what-config_other.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/11/2003 *
4  * ===================                          Last change: 09/21/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_other.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : basic settings                                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Grund Einstellungen                              *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 // Stop saving data if one input field is !isset
47 if (isFormSent()) {
48         // Calculate stamps and set calculated stamps
49         setPostRequestElement('online_timeout'       , createEpocheTimeFromSelections('online_timeout'       , postRequestArray()));
50         setPostRequestElement('url_tlock'            , createEpocheTimeFromSelections('url_tlock'            , postRequestArray()));
51         setPostRequestElement('profile_lock'         , createEpocheTimeFromSelections('profile_lock'         , postRequestArray()));
52         setPostRequestElement('profile_update'       , createEpocheTimeFromSelections('profile_update'       , postRequestArray()));
53         setPostRequestElement('resend_profile_update', createEpocheTimeFromSelections('resend_profile_update', postRequestArray()));
54
55         // Online-Timeout shall be > 0 or your database will crow and crow and crow...
56         if (!isPostRequestElementSet('online_timeout'))        { unsetPostRequestElement('ok'); }
57
58         // Chedck other timestamps (which can be zero!)
59         if (!isPostRequestElementSet('profile_lock'))          { unsetPostRequestElement('ok'); }
60         if (!isPostRequestElementSet('url_tlock'))             { unsetPostRequestElement('ok'); }
61         if (!isPostRequestElementSet('profile_update'))        { unsetPostRequestElement('ok'); }
62         if (!isPostRequestElementSet('resend_profile_update')) { unsetPostRequestElement('ok'); }
63
64         // Check other settings
65         if (!isPostRequestElementSet('max_send'))              { unsetPostRequestElement('ok'); }
66         if (!isPostRequestElementSet('code_length'))           { unsetPostRequestElement('ok'); }
67         if (!isPostRequestElementSet('reject_url'))            { unsetPostRequestElement('ok'); }
68 } // END - if
69
70 if (isFormSent()) {
71         // Update stamps directly
72         adminSaveSettingsFromPostData();
73 } else {
74         // Time selection boxes
75         $content['online_timeout']   = createConfigurationTimeSelections('online_timeout'       , 'ms');
76         $content['url_tlock']        = createConfigurationTimeSelections('url_tlock'            , 'WDh');
77         $content['profile_lock']     = createConfigurationTimeSelections('profile_lock'         , 'WDh');
78         $content['profile_update']   = createConfigurationTimeSelections('profile_update'       , 'YM');
79         $content['profile_reupdate'] = createConfigurationTimeSelections('resend_profile_update', 'MWD');
80
81         // Prepare more
82         foreach (array('css_php_direct','css_php_file','css_php_inline','mailid_error_redirect_index','mailid_error_redirect_reject') as $entry) {
83                 $content[$entry] = '';
84         } // END - foreach
85
86         // Set selections
87         foreach (array('css_php','mailid_error_redirect') as $entry) {
88                 $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"';
89         } // END - foreach
90
91         for ($i = '0'; $i <= 5; $i++) {
92                 $content['comma_def_' . $i] = '';
93         } // END - for
94
95         // Set selection
96         $content['comma_def_' . getConfig('max_comma')] = ' selected="selected"';
97
98         // Load template
99         loadTemplate('admin_config_other', FALSE, $content);
100 }
101
102 // [EOF]
103 ?>