X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-support.php;h=ccf52971de92da40bd25546502fd966b63def185;hb=486544503c2e517dc5c399308fdf43c8e35ff102;hp=93fd3595e42f11c6d8e091e073ce81aaaa6da1c7;hpb=452578b5bf17d14099ee44956deb4e4dc0832874;p=mailer.git diff --git a/inc/modules/member/what-support.php b/inc/modules/member/what-support.php index 93fd3595e4..ccf52971de 100644 --- a/inc/modules/member/what-support.php +++ b/inc/modules/member/what-support.php @@ -1,7 +1,7 @@ = "0.4.1") { - $a_tpl = "admin_support-".REQUEST_POST('qsummary'); + if (isExtensionInstalledAndNewer('admins', '0.4.1')) { + $a_tpl = 'admin_support-' . postRequestElement('qsummary'); } else { - $msg_a = LOAD_EMAIL_TEMPLATE("admin_support-".REQUEST_POST('qsummary'), array('text' => REQUEST_POST('qdetails')), getUserId()); + $message_a = loadEmailTemplate('admin_support-' . postRequestElement('qsummary'), array('text' => postRequestElement('qdetails')), getMemberId()); } - $msg_m = LOAD_EMAIL_TEMPLATE("member_support-".REQUEST_POST('qsummary'), array('text' => REQUEST_POST('qdetails')), getUserId()); + $message_m = loadEmailTemplate('member_support-' . postRequestElement('qsummary'), array('text' => postRequestElement('qdetails')), getMemberId()); // Select right subject - switch (REQUEST_POST('qsummary')) { - case "ordr": - $subj_a = getMessage('SUPPORT_SUBJ_ADMIN_ORDER'); - $subj_m = getMessage('SUPPORT_SUBJ_MEMBER_ORDER'); + switch (postRequestElement('qsummary')) { + case 'ordr': + $subj_a = '{--ADMIN_SUPPORT_ORDER_SUBJECT--}'; + $subj_m = '{--MEMBER_SUPPORT_ORDER_SUBJECT--}'; break; - case "reflink": - $subj_a = getMessage('SUPPORT_SUBJ_ADMIN_REFLINK'); - $subj_m = getMessage('SUPPORT_SUBJ_MEMBER_REFLINK'); + case 'reflink': + $subj_a = '{--ADMIN_SUPPORT_REFERRAL_LINK_SUBJECT--}'; + $subj_m = '{--MEMBER_SUPPORT_REFERRAL_LINK_SUBJECT--}'; break; - case "unconfirmed": - $subj_a = getMessage('SUPPORT_SUBJ_ADMIN_UNCONFIRMED'); - $subj_m = getMessage('SUPPORT_SUBJ_MEMBER_UNCONFIRMED'); + case 'unconfirmed': + $subj_a = '{--ADMIN_SUPPORT_UNCONFIRMED_SUBJECT--}'; + $subj_m = '{--MEMBER_SUPPORT_UNCONFIRMED_SUBJECT--}'; break; } // END - switch // Send mail to admin - SEND_ADMIN_NOTIFICATION($subj_a, $a_tpl, array('text' => REQUEST_POST('qdetails')), getUserId()); + sendAdminNotification($subj_a, $a_tpl, array('text' => postRequestElement('qdetails')), getMemberId()); // Send mail to user - SEND_EMAIL(getUserId(), $subj_m, $msg_m); + sendEmail(getMemberId(), $subj_m, $message_m); - // Drop a message in the admin's area - SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_task_system` (userid, assigned_admin, status, task_type, subject, text, task_created) VALUES ('%s','0','NEW','SUPPORT_MEMBER','%s','%s', UNIX_TIMESTAMP())", - array(getUserId(), $subj_a, REQUEST_POST('qsummary').":".array('text' => REQUEST_POST('qdetails'))), __FILE__, __LINE__); + // Drop a message in the admin's area (we ignore the task id here) + createNewTask($subj_a, postRequestElement('qsummary') . ' : ' . postRequestElement('qdetails'), 'MEMBER_SUPPORT', getMemberId()); // Form sent - LOAD_TEMPLATE("member_support_contcted"); + loadTemplate('member_support_contcted'); } -// + +// [EOF] ?>