X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-edit_emails.php;h=314bab25698c6d3868be1ad5c171f4c166ad28dd;hb=1c3cf7c8bd60ea09a2b268e37a2cb2d0ee0cdeef;hp=29218423723ccbc1aad027b001f5d41a3bd0aaf6;hpb=963e55ca1ea79e255f235e359cde9f7862191dc5;p=mailer.git diff --git a/inc/modules/admin/what-edit_emails.php b/inc/modules/admin/what-edit_emails.php index 2921842372..314bab2569 100644 --- a/inc/modules/admin/what-edit_emails.php +++ b/inc/modules/admin/what-edit_emails.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Werbebuchungen aendern (z.B. umleiten der URL) * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $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 * @@ -32,101 +37,89 @@ ************************************************************************/ // 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'])) && (empty($_POST['id']))) { - unset($_POST['ok']); +if ((isFormSent()) && (!isPostRequestElementSet('id'))) { + unsetPostRequestElement('ok'); } -$result = SQL_QUERY("SELECT id, sender, subject, payment_id, cat_id FROM "._MYSQL_PREFIX."_pool ORDER BY timestamp", __FILE__, __LINE__); -if (SQL_NUMROWS($result) > 0) -{ - if (isset($_POST['ok'])) - { +$result = SQL_QUERY("SELECT id, sender, subject, payment_id, cat_id FROM `{?_MYSQL_PREFIX?}_pool` ORDER BY timestamp", __FILE__, __LINE__); +if (SQL_NUMROWS($result) > 0) { + if (isFormSent()) { // Make mail editable... - $result = SQL_QUERY_ESC("SELECT subject, text, url FROM "._MYSQL_PREFIX."_pool WHERE id=%s LIMIT 1", - array(bigintval($_POST['id'])), __FILE__, __LINE__); + $result = SQL_QUERY_ESC("SELECT subject, text, url FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s LIMIT 1", + array(bigintval(postRequestElement('id'))), __FILE__, __LINE__); list($subj, $text, $url) = SQL_FETCHROW($result); SQL_FREERESULT($result); - define('__ID_VALUE' , $_POST['id']); - define('__URL_VALUE' , $url); - define('__SUBJ_VALUE', $subj); - define('__TEXT_VALUE', $text); + + // Prepare constant for template + $content['id'] = bigintval(postRequestElement('id')); + $content['url'] = $url; + $content['subject'] = $subj; + $content['text'] = $text; // Load template - LOAD_TEMPLATE("admin_edit_email"); - } - elseif (!empty($_POST['save'])) - { + loadTemplate('admin_edit_email', false, $content); + } elseif (isPostRequestElementSet('save')) { // Save changes - if (!empty($SQL)) - { - $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_pool SET -subject='%s', -text='%s', -url='%s' -WHERE id=%s LIMIT 1", - array( - addslashes($_POST['subj']), - addslashes($_POST['text']), - addslashes($_POST['url']), - bigintval($_POST['id']), -), __FILE__, __LINE__); - if (SQL_AFFECTEDROWS() == 1) - { - $content = "".SETTINGS_SAVED.""; - } - else - { - $content = "".SETTINGS_NOT_SAVED.""; - } - } - else - { - $content = "".SETTINGS_NOT_SAVED.""; + SQL_QUERY_ESC("UPDATE + `{?_MYSQL_PREFIX?}_pool` +SET + `subject`='%s', + `text`='%s', + `url`='%s' +WHERE + `id`=%s +LIMIT 1", + array( + postRequestElement('subject'), + postRequestElement('text'), + postRequestElement('url'), + bigintval(postRequestElement('id')), + ), __FILE__, __LINE__); + + if (SQL_AFFECTEDROWS() == 1) { + $content = getMessage('SETTINGS_SAVED'); + } else { + $content = "{--SETTINGS_NOT_SAVED--}"; } // Display message - LOAD_TEMPLATE("admin_settings_saved", false, $content); - } - else - { + loadTemplate('admin_settings_saved', false, $content); + } else { // There are mail orders available - $SW = 2; $OUT = ""; - while (list($id, $sender, $subj, $pay, $cat) = SQL_FETCHROW($result)) - { + $OUT = ''; $SW = 2; + while ($content = SQL_FETCHARRAY($result)) { // Prepare data for the row template $content = array( - 'sw' => $SW, - 'id' => $id, - 'subj' => $subj, - 'uid' => ADMIN_USER_PROFILE_LINK($sender), - 'pay' => GET_PAYMENT($pay), - 'cat' => GET_CATEGORY($cat), + 'sw' => $SW, + 'id' => $content['id'], + 'subject' => $content['subject'], + 'userid' => generateUserProfileLink($content['sender']), + 'pay' => getPaymentTitlePrice($content['payment_id']), + 'cat' => getCategory($content['cat_id']), ); // Load row template and switch colors - $OUT .= LOAD_TEMPLATE("admin_edit_email_row", true, $content); + $OUT .= loadTemplate('admin_edit_email_row', true, $content); $SW = 3 - $SW; } // Free memory SQL_FREERESULT($result); - define('__EMAIL_SELECT_ROWS', $OUT); // Load email template - LOAD_TEMPLATE("admin_edit_email_select"); + loadTemplate('admin_edit_email_select', false, $OUT); } } else { // No mail orders left in pool - OUTPUT_HTML("".ADMIN_NO_MAILS_IN_POOL.""); + loadTemplate('admin_settings_saved', false, "{--ADMIN_NO_MAILS_IN_POOL--}"); } -// +// [EOF] ?>