X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_mediadata.php;h=794f1a6e708001d73d743a74d152fcb3effcce14;hb=0e269568bd666186509e98594e83bac199ac26da;hp=488ffe5cfaf064cfac85f4eaae52c6748a7e2a90;hpb=e01fcf1ca8ddeb72af76465df3ef72301a1cdae7;p=mailer.git diff --git a/inc/modules/admin/what-config_mediadata.php b/inc/modules/admin/what-config_mediadata.php index 488ffe5cfa..794f1a6e70 100644 --- a/inc/modules/admin/what-config_mediadata.php +++ b/inc/modules/admin/what-config_mediadata.php @@ -10,14 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: stelzi $ * + * $Author:: $ * * 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 (IS_FORM_SENT()) { +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 (IS_FORM_SENT()) { +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', "".MAKE_DATETIME(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); } //