X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-edit_emails.php;h=0ecb55d49f33e57da838fea16c15ea682e461899;hp=72308c7e01e2df31d9f61d48a60ff5b1199e98c0;hb=30ae22f62ae87c53a56baf0d134569ba91011111;hpb=5b8d588fdbfa375fa859ca80a9b9e1735a13300e diff --git a/inc/modules/admin/what-edit_emails.php b/inc/modules/admin/what-edit_emails.php index 72308c7e01..0ecb55d49f 100644 --- a/inc/modules/admin/what-edit_emails.php +++ b/inc/modules/admin/what-edit_emails.php @@ -1,7 +1,7 @@ 0) { - if (IS_FORM_SENT()) { +// Entries found? +if (!SQL_HASZERONUMS($result)) { + if (isFormSent()) { // Make mail editable... - $result = SQL_QUERY_ESC("SELECT subject, text, url FROM `{!_MYSQL_PREFIX!}_pool` WHERE `id`=%s LIMIT 1", - array(bigintval(REQUEST_POST('id'))), __FILE__, __LINE__); - list($subj, $text, $url) = SQL_FETCHROW($result); + $result = SQL_QUERY_ESC("SELECT `id`, `subject`, `text`, `url` FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s LIMIT 1", + array(bigintval(postRequestParameter('id'))), __FILE__, __LINE__); + + // Fetch row + $content = SQL_FETCHARRAY($result); + + // Free result SQL_FREERESULT($result); - // @TODO More constants to rewrite - define('__ID_VALUE' , REQUEST_POST('id')); - define('__URL_VALUE' , $url); - define('__SUBJ_VALUE', $subj); - define('__TEXT_VALUE', $text); // Load template - LOAD_TEMPLATE("admin_edit_email"); - } elseif (REQUEST_ISSET_POST('save')) { + loadTemplate('admin_edit_email', false, $content); + } elseif (isPostRequestParameterSet('save')) { // Save changes - SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_pool` SET -subject='%s', -text='%s', -url='%s' -WHERE `id`=%s LIMIT 1", - array( - REQUEST_POST('subj'), - REQUEST_POST('text'), - REQUEST_POST('url'), - bigintval(REQUEST_POST('id')), - ), __FILE__, __LINE__); + SQL_QUERY_ESC("UPDATE + `{?_MYSQL_PREFIX?}_pool` +SET + `subject`='%s', + `text`='%s', + `url`='%s' +WHERE + `id`=%s +LIMIT 1", + array( + postRequestParameter('subject'), + postRequestParameter('text'), + postRequestParameter('url'), + bigintval(postRequestParameter('id')), + ), __FILE__, __LINE__); if (SQL_AFFECTEDROWS() == 1) { - $content = getMessage('SETTINGS_SAVED'); + $content = '{--SETTINGS_SAVED--}'; } else { - $content = "{--SETTINGS_NOT_SAVED--}"; + $content = '{--SETTINGS_NOT_SAVED--}'; } // Display message - LOAD_TEMPLATE('admin_settings_saved', false, $content); + loadTemplate('admin_settings_saved', false, $content); } else { // There are mail orders available - $OUT = ''; $SW = 2; + $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { - // Prepare data for the row template - // @TODO Rewritings: subj->subject in template - $content = array( - 'sw' => $SW, - 'id' => $content['id'], - 'subj' => $content['subject'], - 'uid' => 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); - $SW = 3 - $SW; - } + $OUT .= loadTemplate('admin_edit_email_row', true, $content); + } // END - while // Free memory SQL_FREERESULT($result); - // @TODO Yet another constant to rewrite - 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 - LOAD_TEMPLATE('admin_settings_saved', false, "{--ADMIN_NO_MAILS_IN_POOL--}"); + loadTemplate('admin_settings_saved', false, '{--ADMIN_NO_MAILS_IN_POOL--}'); } -// +// [EOF] ?>