]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_register2.php
fooRequestElementBar() functions renamed, adding of request parameters added:
[mailer.git] / inc / modules / admin / what-config_register2.php
index 32a9a79df6484f0df83404fd0b6b35980de2d637..8fe76d071b3f10bbaf31eee67d5eefa0c43ecb65 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/12/2003 *
- * ===============                              Last change: 11/29/2005 *
+ * Mailer v0.2.1-FINAL                                Start: 10/12/2003 *
+ * ===================                          Last change: 11/29/2005 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-config_register2.php                        *
@@ -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", basename(__FILE__));
+addMenuDescription('admin', __FILE__);
 
-if (isset($_POST['ok'])) {
+if (isFormSent()) {
        // Calculate timestamp from selections...
-       $_POST['ip_timeout'] = CREATE_TIMESTAMP_FROM_SELECTIONS("ip_timeout", $_POST);
-       $_POST['least_cats'] = round($_POST['least_cats']);
+       setPostRequestParameter('ip_timeout', createTimestampFromSelections('ip_timeout', postRequestArray()));
+       setPostRequestParameter('least_cats', round(postRequestParameter('least_cats')));
 
        // Save settings
-       ADMIN_SAVE_SETTINGS($_POST);
+       adminSaveSettingsFromPostData();
 } else {
        // Remember stuff in constants
-       define('LEAST_CATS_VALUE'   , round($_CONFIG['least_cats']));
-       define('__CFG_SHOW_REFID'   , ADD_SELECTION("yn", $_CONFIG['display_refid']   , "display_refid"));
-       define('__TIMEOUT_SELECTION', CREATE_TIME_SELECTIONS($_CONFIG['ip_timeout']   , "ip_timeout", "Dhm"));
-       define('__CFG_DBL_EMAIL'    , ADD_SELECTION("yn", $_CONFIG['check_double_email']       , "check_double_email"));
-       define('__CFG_DBL_PASS'     , ADD_SELECTION("yn", $_CONFIG['check_double_pass']        , "check_double_pass"));
-       define('__CFG_CAT_DEFAULT'  , ADD_SELECTION("yn", $_CONFIG['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]
 ?>