The yearly copyright-update commit. 2009, 2010 are now copyrighted on the developer...
[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  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
42         die();
43 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 if (!isExtensionActive('other')) {
49         // Missing extension!
50         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('other'));
51         return;
52 } // END - if
53
54 // Stop saving data if one input field is !isset
55 if (isFormSent()) {
56         // Calculate stamps and set calculated stamps
57         setPostRequestParameter('online_timeout'       , createTimestampFromSelections('ip_timeout'           , postRequestArray()));
58         setPostRequestParameter('url_tlock'            , createTimestampFromSelections('url_tlock'            , postRequestArray()));
59         setPostRequestParameter('profile_lock'         , createTimestampFromSelections('profile_lock'         , postRequestArray()));
60         setPostRequestParameter('profile_update'       , createTimestampFromSelections('profile_update'       , postRequestArray()));
61         setPostRequestParameter('resend_profile_update', createTimestampFromSelections('resend_profile_update', postRequestArray()));
62
63         // Online-Timeout shall be > 0 or your database will crow and crow and crow...
64         if (!isPostRequestParameterSet('online_timeout'))        { unsetPostRequestParameter('ok'); }
65
66         // Chedck other timestamps (which can be zero!)
67         if (!isPostRequestParameterSet('profile_lock'))          { unsetPostRequestParameter('ok'); }
68         if (!isPostRequestParameterSet('url_tlock'))             { unsetPostRequestParameter('ok'); }
69         if (!isPostRequestParameterSet('profile_update'))        { unsetPostRequestParameter('ok'); }
70         if (!isPostRequestParameterSet('resend_profile_update')) { unsetPostRequestParameter('ok'); }
71
72         // Check other settings
73         if (!isPostRequestParameterSet('max_send'))              { unsetPostRequestParameter('ok'); }
74         if (!isPostRequestParameterSet('code_length'))           { unsetPostRequestParameter('ok'); }
75         if (!isPostRequestParameterSet('reject_url'))            { unsetPostRequestParameter('ok'); }
76 }
77
78 if (isFormSent()) {
79         // Update stamps directly
80         adminSaveSettingsFromPostData();
81 } else {
82         // Time selection boxes
83         $content['online_timeout']   = createTimeSelections(getConfig('online_timeout'), 'ip_timeout'           , 'ms');
84         $content['url_tlock']        = createTimeSelections(getConfig('url_tlock')     , 'url_tlock'            , 'WDh');
85         $content['profile_lock']     = createTimeSelections(getConfig('profile_lock')  , 'profile_lock'         , 'WDh');
86         $content['profile_update']   = createTimeSelections(getConfig('profile_update'), 'profile_update'       , 'YM');
87         $content['profile_reupdate'] = createTimeSelections(getConfig('resend_profile_update') , 'resend_profile_update', 'MWD');
88
89         // Prepare more Y/N selections
90         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') as $entry) {
91                 $content[$entry . '_y'] = '';
92                 $content[$entry . '_n'] = '';
93                 $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"';
94         } // END - foreach
95
96         // Prepare more
97         foreach (array('css_php_direct','css_php_file','css_php_inline','mailid_error_redirect_index','mailid_error_redirect_reject') as $entry) {
98                 $content[$entry] = '';
99         } // END - foreach
100
101         // Set selections
102         foreach (array('css_php','mailid_error_redirect') as $entry) {
103                 $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"';
104         } // END - foreach
105
106         for ($i = '0'; $i <= 5; $i++) {
107                 $content['comma_def_' . $i] = '';
108         } // END - for
109
110         // Set selection
111         $content['comma_def_' . getConfig('max_comma')] = ' selected="selected"';
112
113         // Load template
114         loadTemplate('admin_config_other', false, $content);
115 }
116
117 // [EOF]
118 ?>