mirror of
https://github.com/moodle/moodle.git
synced 2025-04-30 05:18:55 +02:00
New string: paymentmethod
This commit is contained in:
parent
e9f02dafca
commit
0c76d7e375
@ -18,9 +18,9 @@
|
||||
|
||||
/// Load strings. All strings should be defined here. locallib.php uses these strings.
|
||||
$strs = get_strings(array('status','action','time','course','confirm','no','all','none','error'));
|
||||
$authstrs = get_strings(array('orderid','nameoncard','void','capture','refund','delete',
|
||||
$authstrs = get_strings(array('orderid','nameoncard','echeckfirslasttname','void','capture','refund','delete',
|
||||
'authcaptured','authorizedpendingcapture','capturedpendingsettle','capturedsettled',
|
||||
'settled','refunded','cancelled','expired','tested','new',
|
||||
'settled','refunded','cancelled','expired','tested','new','paymentmethod','methodcc','methodecheck',
|
||||
'transid','settlementdate','notsettled','amount','unenrolstudent'), 'enrol_authorize');
|
||||
|
||||
/// Print header
|
||||
|
@ -197,6 +197,8 @@ function authorize_print_order_details($orderno)
|
||||
$settled = authorize_settled($order);
|
||||
$status = authorize_get_status_action($order);
|
||||
|
||||
$table->data[] = array("<b>$authstrs->paymentmethod:</b>",
|
||||
($order->paymentmethod == AN_METHOD_CC ? $authstrs->methodcc : $authstrs->methodecheck));
|
||||
$table->data[] = array("<b>$authstrs->orderid:</b>", $orderno);
|
||||
$table->data[] = array("<b>$authstrs->transid:</b>", $order->transid);
|
||||
$table->data[] = array("<b>$authstrs->amount:</b>", "$order->currency $order->amount");
|
||||
@ -204,7 +206,12 @@ function authorize_print_order_details($orderno)
|
||||
$color = authorize_get_status_color($status->status);
|
||||
$table->data[] = array("<b>$strs->course:</b>", $order->shortname);
|
||||
$table->data[] = array("<b>$strs->status:</b>", "<font style='color:$color'>" . $authstrs->{$status->status} . "</font>");
|
||||
$table->data[] = array("<b>$authstrs->nameoncard:</b>", $order->ccname);
|
||||
if ($order->paymentmethod == AN_METHOD_CC) {
|
||||
$table->data[] = array("<b>$authstrs->nameoncard:</b>", $order->ccname);
|
||||
}
|
||||
else {
|
||||
$table->data[] = array("<b>$authstrs->echeckfirslasttname:</b>", $order->ccname);
|
||||
}
|
||||
$table->data[] = array("<b>$strs->time:</b>", userdate($order->timecreated));
|
||||
$table->data[] = array("<b>$authstrs->settlementdate:</b>", $settled ?
|
||||
userdate($order->settletime) : $authstrs->notsettled);
|
||||
|
@ -113,6 +113,7 @@ $string['noreturns'] = 'No returns!';
|
||||
$string['notsettled'] = 'Not settled';
|
||||
$string['orderid'] = 'Order ID';
|
||||
$string['paymentmanagement'] = 'Payment Management';
|
||||
$string['paymentmethod'] = 'Payment Method';
|
||||
$string['paymentpending'] = 'Your payment is pending for this course with this order number $a->orderid. See <a href=\'$a->url\'>Order Details</a>.';
|
||||
$string['pendingordersemail'] = 'Dear admin,
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user