2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 10/11/2003 *
4 * =================== Last change: 09/21/2004 *
6 * -------------------------------------------------------------------- *
7 * File : what-config_other.php *
8 * -------------------------------------------------------------------- *
9 * Short description : basic settings *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Grund Einstellungen *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
36 ************************************************************************/
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
46 if (!isExtensionActive('other')) {
48 displayMessage(generateExtensionInactiveNotInstalledMessage('other'));
52 // Stop saving data if one input field is !isset
54 // Calculate stamps and set calculated stamps
55 setPostRequestParameter('online_timeout' , createEpocheTimeFromSelections('online_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()));
61 // Online-Timeout shall be > 0 or your database will crow and crow and crow...
62 if (!isPostRequestParameterSet('online_timeout')) { unsetPostRequestParameter('ok'); }
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'); }
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'); }
77 // Update stamps directly
78 adminSaveSettingsFromPostData();
80 // Time selection boxes
81 $content['online_timeout'] = createConfigurationTimeSelections('online_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');
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"';
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] = '';
100 foreach (array('css_php','mailid_error_redirect') as $entry) {
101 $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"';
104 for ($i = '0'; $i <= 5; $i++) {
105 $content['comma_def_' . $i] = '';
109 $content['comma_def_' . getConfig('max_comma')] = ' selected="selected"';
112 loadTemplate('admin_config_other', false, $content);