/// If orderid is empty, user wants to see all orders
if (empty($orderid)) {
- print_authorize_orders();
+ authorize_print_orders();
}
else {
- print_authorize_order_details($orderid);
+ authorize_print_order_details($orderid);
}
/// Print footer
if ($records = get_records_sql($select . $from . $where . $sort . $limit)) {
foreach ($records as $record) {
- $actionstatus = get_status_action($record);
+ $actionstatus = authorize_get_status_action($record);
$actions = '';
if (empty($actionstatus->actions)) {
echo "<input type='hidden' name='order' value='$orderno'>\n";
$settled = settled($order);
- $status = get_status_action($order);
+ $status = authorize_get_status_action($order);
$table->data[] = array("<b>$authstrs->orderid:</b>", $orderno);
$table->data[] = array("<b>$authstrs->transid:</b>", $order->transid);
$refunds = get_records('enrol_authorize_refunds', 'orderid', $orderno);
if ($refunds) {
foreach ($refunds as $rf) {
- $substatus = get_status_action($rf);
+ $substatus = authorize_get_status_action($rf);
$subactions = ' ';
if (empty($substatus->actions)) {
$subactions .= $strs->none;
}
/**
- * get_status_action
+ * authorize_get_status_action
*
* @param object $order Order details.
* @return object
*/
-function get_status_action($order)
+function authorize_get_status_action($order)
{
global $CFG, $USER;
static $timediff30;