Requester => Referrer.
authorIain Patterson <me@iain.cx>
Tue, 9 Apr 2013 19:30:17 +0000 (15:30 -0400)
committerIain Patterson <me@iain.cx>
Wed, 10 Apr 2013 10:11:07 +0000 (06:11 -0400)
The preferred terminology for someone requesting an order is Referrer
rather than Requester.

lib/constants.php
lib/contact.php
lib/order.php

index 06a7c9e..375fe47 100644 (file)
@@ -4,7 +4,7 @@
   $week = array("Sun", "Mon", "Tues", "Wed", "Thu", "Fri", "Sat");
 
   /* Contact roles. */
-  $roles = array("Staff", "Driver", "Requester", "Beneficiary", "Donor");
+  $roles = array("Staff", "Driver", "Referrer", "Beneficiary", "Donor");
   $ROLE_STAFF = 1 << 0;
   $ROLE_DRIVER = 1 << 1;
   $ROLE_REQUESTER = 1 << 2;
index 170d342..ccfcd48 100644 (file)
@@ -50,7 +50,7 @@
     $role_string = get_contact_role_string($contact);
     if ($role_string) echo " $role_string";
     if ($role & $GLOBALS['ROLE_DONOR']) printf(" <a class=\"small\" href=\"/donation/from/contact/%s/%d\">Donations</a>", urlencode($contact->getDisplayname()), $contact->getId());
-    if ($role & $GLOBALS['ROLE_REQUESTER']) printf(" <a class=\"small\" href=\"/order/from/requester/%s/%d\">Requested</a>", urlencode($contact->getDisplayname()), $contact->getId());
+    if ($role & $GLOBALS['ROLE_REQUESTER']) printf(" <a class=\"small\" href=\"/order/from/referrer/%s/%d\">Referred</a>", urlencode($contact->getDisplayname()), $contact->getId());
     if ($role & $GLOBALS['ROLE_BENEFICIARY']) printf(" <a class=\"small\" href=\"/order/to/beneficiary/%s/%d\">Orders</a>", urlencode($contact->getDisplayname()), $contact->getId());
     if (check_admin(1)) {
       echo " " . $contact->getDeleteLink();
     $role_string = get_contact_role_string($contact);
     if ($role_string) echo " $role_string";
     if ($role & $GLOBALS['ROLE_DONOR']) printf(" <a class=\"small\" href=\"/donation/from/contact/%s/%d\">Donations</a>", urlencode($contact->getDisplayname()), $contact->getId());
-    if ($role & $GLOBALS['ROLE_REQUESTER']) printf(" <a class=\"small\" href=\"/order/from/requester/%s/%d\">Requested</a>", urlencode($contact->getDisplayname()), $contact->getId());
+    if ($role & $GLOBALS['ROLE_REQUESTER']) printf(" <a class=\"small\" href=\"/order/from/referrer/%s/%d\">Referred</a>", urlencode($contact->getDisplayname()), $contact->getId());
     if ($role & $GLOBALS['ROLE_BENEFICIARY']) printf(" <a class=\"small\" href=\"/order/to/beneficiary/%s/%d\">Orders</a>", urlencode($contact->getDisplayname()), $contact->getId());
     if (check_admin(1)) {
       echo " " . $contact->getDeleteLink();
index 8b1bbcd..40b645d 100644 (file)
     if (isset($contact_id)) $contact = get_contact_by_id($contact_id);
     else if ($contact_name) $contact = get_contact_by_name($contact_name);
     if ($contact) {
-      echo "<p>Orders from requester " . $contact->getLink() . ":";
+      echo "<p>Orders from referrer " . $contact->getLink() . ":";
       return show_orders($offset, $per_page, $contact->getId(), null, $state_mask);
     }
     else echo "<p>No such contact!</p>\n";
     echo "  <td>"; show_date_form("date", $order->getDate()); echo "</td>\n";
     echo "</tr>\n";
 
-    /* Requester. */
+    /* Referrer. */
     echo "<tr>\n";
-    echo "  <td>Requester</td>\n";
+    echo "  <td>Referrer</td>\n";
     echo "  <td><select name=\"requester_id\">\n";
     option("requester_id", null, "");
     $contacts = get_area_requesters();
 
     $requester = get_contact_by_id($requester_id);
     if (! $requester) {
-      echo "<p>Invalid requester!</p>\n";
+      echo "<p>Invalid referrer!</p>\n";
       return false;
     }
 
       }
     }
     else if ($parameters[0] == "from") {
-      /* /order/from/requester/Iain+Patterson/4 */
+      /* /order/from/referrer/Iain+Patterson/4 */
       switch ($parameters[1]) {
-        case "requester":
+        case "referrer":
           $contact_id = $parameters[3];
           $q = new ContactQuery;
           $contact = $q->findOneById($contact_id);