X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_register2.php;h=2fe8f5bc132fe76839209650cacc0e377167be9b;hb=a49d1f4613f3f7d47fb57d946e9f7f705bd34a9b;hp=3356d97c9fdbb19150058f90f88a1e05d6f6b930;hpb=d8148e3f1f3a6762b2e786dbe99ada269dcf2ea0;p=mailer.git diff --git a/inc/modules/admin/what-config_register2.php b/inc/modules/admin/what-config_register2.php index 3356d97c9f..2fe8f5bc13 100644 --- a/inc/modules/admin/what-config_register2.php +++ b/inc/modules/admin/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 * @@ -32,33 +32,31 @@ ************************************************************************/ // 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 (IS_FORM_SENT()) { +if (isFormSent()) { // Calculate timestamp from selections... - REQUEST_SET_POST('ip_timeout', CREATE_TIMESTAMP_FROM_SELECTIONS("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', CREATE_TIME_SELECTIONS(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] ?>