]> git.mjollnir.org Git - moodle.git/commitdiff
Make function names as library name.
authorethem <ethem>
Tue, 11 Apr 2006 12:37:41 +0000 (12:37 +0000)
committerethem <ethem>
Tue, 11 Apr 2006 12:37:41 +0000 (12:37 +0000)
enrol/authorize/index.php
enrol/authorize/lib.php

index fde08f99906add7e63fb17ab2d8aadab019bdb50..5949fe6acca532700d263d29496223e9afbf12ff 100644 (file)
 
 /// 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
index 1eab58f35fe611ed5eb9a66964d264565b00f87a..5cb30e89b0fddf56f4143f0e791b4f5bf13d2403 100644 (file)
@@ -114,7 +114,7 @@ function authorize_print_orders()
 
     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)) {
@@ -181,7 +181,7 @@ function authorize_print_order_details($orderno)
     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);
@@ -436,7 +436,7 @@ function authorize_print_order_details($orderno)
             $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 = '&nbsp;';
                     if (empty($substatus->actions)) {
                         $subactions .= $strs->none;
@@ -464,12 +464,12 @@ function authorize_print_order_details($orderno)
 }
 
 /**
- * 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;