fooRequestElementBar() functions renamed, adding of request parameters added:
[mailer.git] / inc / modules / admin / what-config_other.php
index 2074ae482807cf6e37414259bb60f707b4381eaf..45aea71699eb6fa17f08860401006cab085f00cb 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/11/2003 *
- * ===============                              Last change: 09/21/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 10/11/2003 *
+ * ===================                          Last change: 09/21/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-config_other.php                            *
@@ -17,7 +17,7 @@
  * Needs to be in all Files and every File needs "svn propset           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  ************************************************************************/
 
 // Some security stuff...
-if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
-       require($INC);
-} elseif (!EXT_IS_ACTIVE('other')) {
-       // Missing extension!
-       addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), 'other'));
-       return;
-}
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
 
 // Add description as navigation point
-ADD_DESCR('admin', __FILE__);
+addMenuDescription('admin', __FILE__);
+
+if (!isExtensionActive('other')) {
+       // Missing extension!
+       loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('other'));
+       return;
+} // END - if
 
 // Stop saving data if one input field is !isset
 if (isFormSent()) {
        // Calculate stamps and set calculated stamps
-       REQUEST_POST('online_timeout')        = createTimestampFromSelections('ip_timeout'           , REQUEST_POST_ARRAY());
-       REQUEST_POST('url_tlock')             = createTimestampFromSelections('url_tlock'            , REQUEST_POST_ARRAY());
-       REQUEST_POST('profile_lock')          = createTimestampFromSelections('profile_lock'         , REQUEST_POST_ARRAY());
-       REQUEST_POST('profile_update')        = createTimestampFromSelections('profile_update'       , REQUEST_POST_ARRAY());
-       REQUEST_SET_POST('resend_profile_update', createTimestampFromSelections('resend_profile_update', REQUEST_POST_ARRAY()));
+       setPostRequestParameter('online_timeout'       , createTimestampFromSelections('ip_timeout'           , postRequestArray()));
+       setPostRequestParameter('url_tlock'            , createTimestampFromSelections('url_tlock'            , postRequestArray()));
+       setPostRequestParameter('profile_lock'         , createTimestampFromSelections('profile_lock'         , postRequestArray()));
+       setPostRequestParameter('profile_update'       , createTimestampFromSelections('profile_update'       , postRequestArray()));
+       setPostRequestParameter('resend_profile_update', createTimestampFromSelections('resend_profile_update', postRequestArray()));
 
        // Online-Timeout shall be > 0 or your database will crow and crow and crow...
-       if (!REQUEST_ISSET_POST(('online_timeout')))        { REQUEST_UNSET_POST('ok'); }
+       if (!isPostRequestParameterSet('online_timeout'))        { unsetPostRequestParameter('ok'); }
 
        // Chedck other timestamps (which can be zero!)
-       if (!REQUEST_ISSET_POST(('profile_lock')))          { REQUEST_UNSET_POST('ok'); }
-       if (!REQUEST_ISSET_POST(('url_tlock')))             { REQUEST_UNSET_POST('ok'); }
-       if (!REQUEST_ISSET_POST(('profile_update')))        { REQUEST_UNSET_POST('ok'); }
-       if (!REQUEST_ISSET_POST(('resend_profile_update'))) { REQUEST_UNSET_POST('ok'); }
+       if (!isPostRequestParameterSet('profile_lock'))          { unsetPostRequestParameter('ok'); }
+       if (!isPostRequestParameterSet('url_tlock'))             { unsetPostRequestParameter('ok'); }
+       if (!isPostRequestParameterSet('profile_update'))        { unsetPostRequestParameter('ok'); }
+       if (!isPostRequestParameterSet('resend_profile_update')) { unsetPostRequestParameter('ok'); }
 
        // Check other settings
-       if (!REQUEST_ISSET_POST(('max_send')))              { REQUEST_UNSET_POST('ok'); }
-       if (!REQUEST_ISSET_POST(('code_length')))           { REQUEST_UNSET_POST('ok'); }
-       if (!REQUEST_ISSET_POST(('reject_url')))            { REQUEST_UNSET_POST('ok'); }
+       if (!isPostRequestParameterSet('max_send'))              { unsetPostRequestParameter('ok'); }
+       if (!isPostRequestParameterSet('code_length'))           { unsetPostRequestParameter('ok'); }
+       if (!isPostRequestParameterSet('reject_url'))            { unsetPostRequestParameter('ok'); }
 }
 
 if (isFormSent()) {
        // Update stamps directly
-       ADMIN_SAVE_SETTINGS_POST();
+       adminSaveSettingsFromPostData();
 } else {
-       // Transfer config data into constants for the template
-       define('_CFG_CODE_LENGTH', getConfig('code_length'));
-       define('_CFG_ACT_SYSTEM' , getConfig('activate_xchange'));
-       define('_CFG_MAX_SEND'   , getConfig('max_send'));
-       define('_CFG_REJECT_URL' , getConfig('reject_url'));
-       define('_CFG_MIN_AGE'    , getConfig('min_age'));
-
        // Time selection boxes
-       define('_CFG_ONLINE_TIMEOUT', createTimeSelections(getConfig('online_timeout'), 'ip_timeout'           , 'ms'));
-       define('_CFG_URL_TLOCK'     , createTimeSelections(getConfig('url_tlock')     , 'url_tlock'            , 'WDh'));
-       define('_CFG_PROFILE_LOCK'  , createTimeSelections(getConfig('profile_lock')  , 'profile_lock'         , 'WDh'));
-       define('_CFG_PROFILE_UPDATE', createTimeSelections(getConfig('profile_update'), 'profile_update'       , 'YM'));
-       define('_CFG_PROF_REUPDATE' , createTimeSelections(getConfig('resend_profile_update') , 'resend_profile_update', 'MWD'));
-
-       if (getConfig('order_multi_page') != 'Y') {
-               define('_CFG_ORDER_MULTI_N', ' checked="checked"');
-               define('_CFG_ORDER_MULTI_Y', '');
-       } else {
-               define('_CFG_ORDER_MULTI_N', '');
-               define('_CFG_ORDER_MULTI_Y', ' checked="checked"');
-       }
-
-       if (getConfig('autosend_active') != 'Y') {
-               define('_CFG_AUTOSEND_ACTIVE_N', ' checked="checked"');
-               define('_CFG_AUTOSEND_ACTIVE_Y', '');
-       } else {
-               define('_CFG_AUTOSEND_ACTIVE_N', '');
-               define('_CFG_AUTOSEND_ACTIVE_Y', ' checked="checked"');
-       }
-
-       if (getConfig('send_prof_update') != 'Y') {
-               define('_CFG_SEND_UPDATE_N', ' checked="checked"');
-               define('_CFG_SEND_UPDATE_Y', '');
-       } else {
-               define('_CFG_SEND_UPDATE_N', '');
-               define('_CFG_SEND_UPDATE_Y', ' checked="checked"');
-       }
-
-       if (getConfig('admin_notify') != 'Y') {
-               define('_CFG_ADMIN_NOTIFY_N', ' checked="checked"');
-               define('_CFG_ADMIN_NOTIFY_Y', '');
-       } else {
-               define('_CFG_ADMIN_NOTIFY_N', '');
-               define('_CFG_ADMIN_NOTIFY_Y', ' checked="checked"');
-       }
-
-       if (getConfig('css_php') == 'DIRECT') {
-               define('_CFG_CSS_PHP_DIRECT', ' checked="checked"');
-               define('_CFG_CSS_PHP_FILE', '');
-       } else {
-               define('_CFG_CSS_PHP_DIRECT', '');
-               define('_CFG_CSS_PHP_FILE', ' checked="checked"');
-       }
-
-       if (getConfig('guest_menu') == 'Y') {
-               define('_CFG_GUEST_MENU_ACTIVE', ' checked="checked"');
-               define('_CFG_GUEST_MENU_INACTIVE', '');
-       } else {
-               define('_CFG_GUEST_MENU_ACTIVE', '');
-               define('_CFG_GUEST_MENU_INACTIVE', ' checked="checked"');
-       }
-
-       if (getConfig('member_menu') == 'Y') {
-               define('_CFG_MEMBER_MENU_ACTIVE', ' checked="checked"');
-               define('_CFG_MEMBER_MENU_INACTIVE', '');
-       } else {
-               define('_CFG_MEMBER_MENU_ACTIVE', '');
-               define('_CFG_MEMBER_MENU_INACTIVE', ' checked="checked"');
-       }
-
-       if (getConfig('youre_here') == 'Y') {
-               define('_CFG_YOURE_HERE_ACTIVE', ' checked="checked"');
-               define('_CFG_YOURE_HERE_INACTIVE', '');
-       } else {
-               define('_CFG_YOURE_HERE_ACTIVE', '');
-               define('_CFG_YOURE_HERE_INACTIVE', ' checked="checked"');
-       }
-
-       if (getConfig('show_timings') == 'Y') {
-               define('_CFG_SHOW_TIMINGS_Y', ' checked="checked"');
-               define('_CFG_SHOW_TIMINGS_N', '');
-       } else {
-               define('_CFG_SHOW_TIMINGS_Y', '');
-               define('_CFG_SHOW_TIMINGS_N', ' checked="checked"');
-       }
-
-       if (getConfig('show_points_unconfirmed') == 'Y') {
-               define('_CFG_SHOW_POINTS_UNCONFIRMED_Y', ' checked="checked"');
-               define('_CFG_SHOW_POINTS_UNCONFIRMED_N', '');
-       } else {
-               define('_CFG_SHOW_POINTS_UNCONFIRMED_Y', '');
-               define('_CFG_SHOW_POINTS_UNCONFIRMED_N', ' checked="checked"');
-       }
-
-       if (getConfig('mailid_error_redirect') == 'INDEX') {
-               define('_CFG_MAILID_REDIRECT_INDEX', ' checked="checked"');
-               define('_CFG_MAILID_REDIRECT_REJECT', '');
-       } else {
-               define('_CFG_MAILID_REDIRECT_INDEX', '');
-               define('_CFG_MAILID_REDIRECT_REJECT', ' checked="checked"');
-       }
-
-       for ($i = 0; $i <= 5; $i++) {
-               $eval = "define('_COMMA_DEF_".$i."', \"\");";
-               if (getConfig('max_comma') == $i) $eval = "define('_COMMA_DEF_".$i."', ' selected=\"selected\"');";
-               eval($eval);
-       }
+       $content['online_timeout']   = createTimeSelections(getConfig('online_timeout'), 'ip_timeout'           , 'ms');
+       $content['url_tlock']        = createTimeSelections(getConfig('url_tlock')     , 'url_tlock'            , 'WDh');
+       $content['profile_lock']     = createTimeSelections(getConfig('profile_lock')  , 'profile_lock'         , 'WDh');
+       $content['profile_update']   = createTimeSelections(getConfig('profile_update'), 'profile_update'       , 'YM');
+       $content['profile_reupdate'] = createTimeSelections(getConfig('resend_profile_update') , 'resend_profile_update', 'MWD');
+
+       // Prepare more Y/N selections
+       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) {
+               $content[$entry . '_y'] = '';
+               $content[$entry . '_n'] = '';
+               $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"';
+       } // END - foreach
+
+       // Prepare more
+       foreach (array('css_php_direct','css_php_file','css_php_inline','mailid_error_redirect_index','mailid_error_redirect_reject') as $entry) {
+               $content[$entry] = '';
+       } // END - foreach
+
+       // Set selections
+       foreach (array('css_php','mailid_error_redirect') as $entry) {
+               $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"';
+       } // END - foreach
+
+       for ($i = '0'; $i <= 5; $i++) {
+               $content['comma_def_' . $i] = '';
+       } // END - for
+
+       // Set selection
+       $content['comma_def_' . getConfig('max_comma')] = ' selected="selected"';
 
        // Load template
-       LOAD_TEMPLATE("admin_config_other");
+       loadTemplate('admin_config_other', false, $content);
 }
 
-//
+// [EOF]
 ?>