06a7c9e67d01d7efc92ae0cb4ae5d03823b08bb4
[readifood.git] / lib / constants.php
1 <?php
2
3 /* Area days of week. */
4   $week = array("Sun", "Mon", "Tues", "Wed", "Thu", "Fri", "Sat");
5
6   /* Contact roles. */
7   $roles = array("Staff", "Driver", "Requester", "Beneficiary", "Donor");
8   $ROLE_STAFF = 1 << 0;
9   $ROLE_DRIVER = 1 << 1;
10   $ROLE_REQUESTER = 1 << 2;
11   $ROLE_BENEFICIARY = 1 << 3;
12   $ROLE_DONOR = 1 << 4;
13
14   /* Order states. */
15   $states = array("placed", "picked", "despatched", "undelivered", "delivered", "cancelled");
16   $all_states = (1 << count($states)) - 1;
17   $STATE_PLACED = 1 << 0;
18   $STATE_PICKED = 1 << 1;
19   $STATE_DESPATCHED = 1 << 2;
20   $STATE_UNDELIVERED = 1 << 3;
21   $STATE_DELIVERED = 1 << 4;
22   $STATE_CANCELLED = 1 << 5;
23   $STATE_ANY = $all_states;
24
25 ?>