]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_register2.php
Huge script change, see http://forum.mxchange.org/topic-458.html for details:
[mailer.git] / inc / modules / admin / what-config_register2.php
index bf40ec0467114a385096f68b790230bbbf1f41f4..726fae8205ef74d51272fc82d5741766dce3d052 100644 (file)
@@ -12,7 +12,7 @@
  * -------------------------------------------------------------------- *
  *          Adapted from what-config_reg.php                            *
  * -------------------------------------------------------------------- *
- * 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);
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
 }
 
 // Add description as navigation point
-ADD_DESCR('admin', __FILE__);
+addMenuDescription('admin', __FILE__);
 
 if (isFormSent()) {
        // Calculate timestamp from selections...
-       REQUEST_SET_POST('ip_timeout', createTimestampFromSelections('ip_timeout', REQUEST_POST_ARRAY()));
-       REQUEST_SET_POST('least_cats', round(REQUEST_POST('least_cats')));
+       setRequestPostElement('ip_timeout', createTimestampFromSelections('ip_timeout', postRequestArray()));
+       setRequestPostElement('least_cats', round(postRequestElement('least_cats')));
 
        // Save settings
-       ADMIN_SAVE_SETTINGS_POST();
+       adminSaveSettingsFromPostData();
 } else {
        // Remember stuff in constants
-       define('LEAST_CATS_VALUE'   , round(getConfig('least_cats')));
-       define('__CFG_SHOW_REFID'   , ADD_SELECTION('yn', getConfig('display_refid')     , 'display_refid'));
-       define('__TIMEOUT_SELECTION', createTimeSelections(getConfig('ip_timeout')     , 'ip_timeout', 'Dhm'));
-       define('__CFG_DBL_EMAIL'    , ADD_SELECTION('yn', getConfig('check_double_email'), 'check_double_email'));
-       define('__CFG_DBL_PASS'     , ADD_SELECTION('yn', getConfig('check_double_pass') , 'check_double_pass'));
-       define('__CFG_CAT_DEFAULT'  , ADD_SELECTION('yn', getConfig('register_default')  , 'register_default'));
+       $content['display_refid']      = addSelectionBox('yn', getConfig('display_refid')     , 'display_refid');
+       $content['ip_timeout']         = createTimeSelections(getConfig('ip_timeout')       , 'ip_timeout', 'Dhm');
+       $content['check_double_email'] = addSelectionBox('yn', getConfig('check_double_email'), 'check_double_email');
+       $content['check_double_pass']  = addSelectionBox('yn', getConfig('check_double_pass') , 'check_double_pass');
+       $content['register_default']   =addSelectionBox('yn', getConfig('register_default')  , 'register_default');
 
        // Load normal template
-       LOAD_TEMPLATE('admin_config_register2');
+       loadTemplate('admin_config_register2', false, $content);
 }
 
-//
+// [EOF]
 ?>