X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-config_mediadata.php;h=794f1a6e708001d73d743a74d152fcb3effcce14;hb=c2e17d983fcbc0c3bd1dd37908d87c678f0367df;hp=7b1ce5e2efd16d709e04aa3464fef5bb48ab4a7f;hpb=3afdce4fe00b4af570122ce7b8158ced44aec7d3;p=mailer.git diff --git a/inc/modules/admin/what-config_mediadata.php b/inc/modules/admin/what-config_mediadata.php index 7b1ce5e2ef..794f1a6e70 100644 --- a/inc/modules/admin/what-config_mediadata.php +++ b/inc/modules/admin/what-config_mediadata.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 * @@ -37,60 +37,56 @@ ************************************************************************/ // 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()) { // Test timestamp - $STAMP = mktime(0, 0, 0, bigintval(REQUEST_POST('month')), bigintval(REQUEST_POST('day')), bigintval(REQUEST_POST('year'))); + $STAMP = mktime(0, 0, 0, bigintval(postRequestElement('month')), bigintval(postRequestElement('day')), bigintval(postRequestElement('year'))); if ($STAMP > time()) { // Date is in the future! - REQUEST_UNSET_POST('ok'); + unsetPostRequestElement('ok'); } else { // Remove entries - REQUEST_UNSET_POST(('day')); - REQUEST_UNSET_POST(('month')); - REQUEST_UNSET_POST(('year')); + unsetPostRequestElement('day'); + unsetPostRequestElement('month'); + unsetPostRequestElement('year'); // Remember timestamp - REQUEST_SET_POST('mt_start', $STAMP); + setRequestPostElement('mt_start', $STAMP); } // Convert some data - REQUEST_SET_POST('mt_stage', bigintval(REQUEST_POST('mt_stage'))); - if (REQUEST_POST('mt_stage') <= GET_TOTAL_DATA('CONFIRMED', 'user_data', 'userid', 'status', true)) { + setRequestPostElement('mt_stage', bigintval(postRequestElement('mt_stage'))); + if (postRequestElement('mt_stage') <= countSumTotalData('CONFIRMED', 'user_data', 'userid', 'status', true)) { // Not enougth! - REQUEST_UNSET_POST('ok'); + unsetPostRequestElement('ok'); } } if (isFormSent()) { // Save data - ADMIN_SAVE_SETTINGS_POST(); + adminSaveSettingsFromPostData(); } else { // Start of this exchange if (getConfig('mt_start') > 0) { // Only show start - define('__MT_START', "".generateDateTime(getConfig('mt_start'), '3').""); + $content['mt_start'] = '' . generateDateTime(getConfig('mt_start'), 3) . ''; } else { // Make start editable - define('__MT_START', - ADD_SELECTION("day" , date('d', time())). - ADD_SELECTION("month", date('m', time())). - ADD_SELECTION("year", -1) - ); + $content['mt_start'] = + addSelectionBox('day' , date('d', time())). + addSelectionBox('month', date('m', time())). + addSelectionBox('year', -1) + ; } - // Next stage of this MT - define('__MT_STAGE', getConfig('mt_stage')); - // Load template - LOAD_TEMPLATE("admin_config_mediadata"); + loadTemplate('admin_config_mediadata', false, $content); } //