ae4eaaa0f424fd4ab9069ec5e121a8e87b1ab4ba
[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 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.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 if (!isExtensionActive('other')) {
47         // Missing extension!
48         displayMessage(generateExtensionInactiveNotInstalledMessage('other'));
49         return;
50 } // END - if
51
52 // Stop saving data if one input field is !isset
53 if (isFormSent()) {
54         // Calculate stamps and set calculated stamps
55         setPostRequestParameter('online_timeout'       , createEpocheTimeFromSelections('ip_timeout'           , postRequestArray()));
56         setPostRequestParameter('url_tlock'            , createEpocheTimeFromSelections('url_tlock'            , postRequestArray()));
57         setPostRequestParameter('profile_lock'         , createEpocheTimeFromSelections('profile_lock'         , postRequestArray()));
58         setPostRequestParameter('profile_update'       , createEpocheTimeFromSelections('profile_update'       , postRequestArray()));
59         setPostRequestParameter('resend_profile_update', createEpocheTimeFromSelections('resend_profile_update', postRequestArray()));
60
61         // Online-Timeout shall be > 0 or your database will crow and crow and crow...
62         if (!isPostRequestParameterSet('online_timeout'))        { unsetPostRequestParameter('ok'); }
63
64         // Chedck other timestamps (which can be zero!)
65         if (!isPostRequestParameterSet('profile_lock'))          { unsetPostRequestParameter('ok'); }
66         if (!isPostRequestParameterSet('url_tlock'))             { unsetPostRequestParameter('ok'); }
67         if (!isPostRequestParameterSet('profile_update'))        { unsetPostRequestParameter('ok'); }
68         if (!isPostRequestParameterSet('resend_profile_update')) { unsetPostRequestParameter('ok'); }
69
70         // Check other settings
71         if (!isPostRequestParameterSet('max_send'))              { unsetPostRequestParameter('ok'); }
72         if (!isPostRequestParameterSet('code_length'))           { unsetPostRequestParameter('ok'); }
73         if (!isPostRequestParameterSet('reject_url'))            { unsetPostRequestParameter('ok'); }
74 } // END - if
75
76 if (isFormSent()) {
77         // Update stamps directly
78         adminSaveSettingsFromPostData();
79 } else {
80         // Time selection boxes
81         $content['online_timeout']   = createConfigurationTimeSelections('ip_timeout'           , 'ms');
82         $content['url_tlock']        = createConfigurationTimeSelections('url_tlock'            , 'WDh');
83         $content['profile_lock']     = createConfigurationTimeSelections('profile_lock'         , 'WDh');
84         $content['profile_update']   = createConfigurationTimeSelections('profile_update'       , 'YM');
85         $content['profile_reupdate'] = createConfigurationTimeSelections('resend_profile_update', 'MWD');
86
87         // Prepare more Y/N selections
88         foreach (array('show_points_unconfirmed','show_timings','youre_here','member_menu','guest_menu','order_multi_page','autosend_active','send_prof_update','admin_notify','display_debug_sqls','stats_enabled') as $entry) {
89                 $content[$entry . '_y'] = '';
90                 $content[$entry . '_n'] = '';
91                 $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"';
92         } // END - foreach
93
94         // Prepare more
95         foreach (array('css_php_direct','css_php_file','css_php_inline','mailid_error_redirect_index','mailid_error_redirect_reject') as $entry) {
96                 $content[$entry] = '';
97         } // END - foreach
98
99         // Set selections
100         foreach (array('css_php','mailid_error_redirect') as $entry) {
101                 $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"';
102         } // END - foreach
103
104         for ($i = '0'; $i <= 5; $i++) {
105                 $content['comma_def_' . $i] = '';
106         } // END - for
107
108         // Set selection
109         $content['comma_def_' . getConfig('max_comma')] = ' selected="selected"';
110
111         // Load template
112         loadTemplate('admin_config_other', false, $content);
113 }
114
115 // [EOF]
116 ?>