@@ -18,14 +18,14 @@ discard block |
||
18 | 18 | |
19 | 19 | $territoryParams['type'] = TerritoryTypes::CIRCLE; |
20 | 20 | $territoryParams['data'] = array( |
21 | - "37.569752822786455,-77.47833251953125", |
|
22 | - "5000" |
|
21 | + "37.569752822786455,-77.47833251953125", |
|
22 | + "5000" |
|
23 | 23 | ); |
24 | 24 | |
25 | 25 | $TerritoryParameters = Territory::fromArray(array( |
26 | - "territory_name" => "Test Territory ".strval(rand(10000,99999)), |
|
27 | - "territory_color" => "ff7700", |
|
28 | - "territory" => $territoryParams |
|
26 | + "territory_name" => "Test Territory ".strval(rand(10000,99999)), |
|
27 | + "territory_color" => "ff7700", |
|
28 | + "territory" => $territoryParams |
|
29 | 29 | )); |
30 | 30 | |
31 | 31 | $territory = new Territory(); |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | echo "------------------------------------------------------------------------<br><br>"; |
42 | 42 | |
43 | 43 | $params = array( |
44 | - "territory_id" => $territory_id |
|
44 | + "territory_id" => $territory_id |
|
45 | 45 | ); |
46 | 46 | |
47 | 47 | $result1 = $territory->getTerritory($params); |
@@ -7,107 +7,107 @@ |
||
7 | 7 | |
8 | 8 | class AvoidanceZone extends Common |
9 | 9 | { |
10 | - public $territory_id; // Avoidance zone id |
|
11 | - public $territory_name; |
|
12 | - public $territory_color; |
|
13 | - public $orders; |
|
14 | - public $member_id; |
|
15 | - public $territory; // Territory parameters |
|
10 | + public $territory_id; // Avoidance zone id |
|
11 | + public $territory_name; |
|
12 | + public $territory_color; |
|
13 | + public $orders; |
|
14 | + public $member_id; |
|
15 | + public $territory; // Territory parameters |
|
16 | 16 | |
17 | - public static function fromArray(array $params) |
|
18 | - { |
|
19 | - if (!isset($params['territory_name'])) { |
|
20 | - throw new BadParam('Territory name must be provided'); |
|
21 | - } |
|
17 | + public static function fromArray(array $params) |
|
18 | + { |
|
19 | + if (!isset($params['territory_name'])) { |
|
20 | + throw new BadParam('Territory name must be provided'); |
|
21 | + } |
|
22 | 22 | |
23 | - if (!isset($params['territory_color'])) { |
|
24 | - throw new BadParam('Territory color must be provided'); |
|
25 | - } |
|
23 | + if (!isset($params['territory_color'])) { |
|
24 | + throw new BadParam('Territory color must be provided'); |
|
25 | + } |
|
26 | 26 | |
27 | - if (!isset($params['territory'])) { |
|
28 | - throw new BadParam('Territory must be provided'); |
|
29 | - } |
|
27 | + if (!isset($params['territory'])) { |
|
28 | + throw new BadParam('Territory must be provided'); |
|
29 | + } |
|
30 | 30 | |
31 | - $avoidanceZoneParameters = new AvoidanceZone(); |
|
31 | + $avoidanceZoneParameters = new AvoidanceZone(); |
|
32 | 32 | |
33 | - foreach($params as $key => $value) { |
|
34 | - if (property_exists($avoidanceZoneParameters, $key)) { |
|
35 | - $avoidanceZoneParameters->{$key} = $value; |
|
36 | - } |
|
37 | - } |
|
33 | + foreach($params as $key => $value) { |
|
34 | + if (property_exists($avoidanceZoneParameters, $key)) { |
|
35 | + $avoidanceZoneParameters->{$key} = $value; |
|
36 | + } |
|
37 | + } |
|
38 | 38 | |
39 | - return $avoidanceZoneParameters; |
|
40 | - } |
|
39 | + return $avoidanceZoneParameters; |
|
40 | + } |
|
41 | 41 | |
42 | - public static function getAvoidanceZone($territory_id) |
|
43 | - { |
|
44 | - $avoidanceZone = Route4Me::makeRequst(array( |
|
45 | - 'url' => Endpoint::AVOIDANCE_ZONE, |
|
46 | - 'method' => 'GET', |
|
47 | - 'query' => array( |
|
48 | - 'territory_id' => $territory_id |
|
49 | - ) |
|
50 | - )); |
|
42 | + public static function getAvoidanceZone($territory_id) |
|
43 | + { |
|
44 | + $avoidanceZone = Route4Me::makeRequst(array( |
|
45 | + 'url' => Endpoint::AVOIDANCE_ZONE, |
|
46 | + 'method' => 'GET', |
|
47 | + 'query' => array( |
|
48 | + 'territory_id' => $territory_id |
|
49 | + ) |
|
50 | + )); |
|
51 | 51 | |
52 | - return $avoidanceZone; |
|
53 | - } |
|
52 | + return $avoidanceZone; |
|
53 | + } |
|
54 | 54 | |
55 | - public static function getAvoidanceZones($params) |
|
56 | - { |
|
57 | - $avoidanceZones = Route4Me::makeRequst(array( |
|
58 | - 'url' => Endpoint::AVOIDANCE_ZONE, |
|
59 | - 'method' => 'GET', |
|
60 | - 'query' => array( |
|
61 | - 'offset' => isset($params->offset) ? $params->offset : null, |
|
62 | - 'limit' => isset($params->limit) ? $params->limit : null, |
|
63 | - ) |
|
64 | - )); |
|
55 | + public static function getAvoidanceZones($params) |
|
56 | + { |
|
57 | + $avoidanceZones = Route4Me::makeRequst(array( |
|
58 | + 'url' => Endpoint::AVOIDANCE_ZONE, |
|
59 | + 'method' => 'GET', |
|
60 | + 'query' => array( |
|
61 | + 'offset' => isset($params->offset) ? $params->offset : null, |
|
62 | + 'limit' => isset($params->limit) ? $params->limit : null, |
|
63 | + ) |
|
64 | + )); |
|
65 | 65 | |
66 | - return $avoidanceZones; |
|
67 | - } |
|
66 | + return $avoidanceZones; |
|
67 | + } |
|
68 | 68 | |
69 | - public static function addAvoidanceZone($params) |
|
70 | - { |
|
71 | - $terParams = array(); |
|
69 | + public static function addAvoidanceZone($params) |
|
70 | + { |
|
71 | + $terParams = array(); |
|
72 | 72 | |
73 | - if (isset($params->territory['type'])) $terParams['type'] = $params->territory['type']; |
|
74 | - if (isset($params->territory['data'])) $terParams['data'] = $params->territory['data']; |
|
73 | + if (isset($params->territory['type'])) $terParams['type'] = $params->territory['type']; |
|
74 | + if (isset($params->territory['data'])) $terParams['data'] = $params->territory['data']; |
|
75 | 75 | |
76 | - $abContacts = Route4Me::makeRequst(array( |
|
77 | - 'url' => Endpoint::AVOIDANCE_ZONE, |
|
78 | - 'method' => 'POST', |
|
79 | - 'body' => array( |
|
80 | - 'territory_name' => isset($params->territory_name) ? $params->territory_name : null, |
|
81 | - 'territory_color' => isset($params->territory_color) ? $params->territory_color : null, |
|
82 | - 'territory' => $terParams |
|
83 | - ) |
|
84 | - )); |
|
76 | + $abContacts = Route4Me::makeRequst(array( |
|
77 | + 'url' => Endpoint::AVOIDANCE_ZONE, |
|
78 | + 'method' => 'POST', |
|
79 | + 'body' => array( |
|
80 | + 'territory_name' => isset($params->territory_name) ? $params->territory_name : null, |
|
81 | + 'territory_color' => isset($params->territory_color) ? $params->territory_color : null, |
|
82 | + 'territory' => $terParams |
|
83 | + ) |
|
84 | + )); |
|
85 | 85 | |
86 | - return $abContacts; |
|
87 | - } |
|
86 | + return $abContacts; |
|
87 | + } |
|
88 | 88 | |
89 | - public function deleteAvoidanceZone($territory_id) |
|
90 | - { |
|
91 | - $result = Route4Me::makeRequst(array( |
|
92 | - 'url' => Endpoint::AVOIDANCE_ZONE, |
|
93 | - 'method' => 'DELETEARRAY', |
|
94 | - 'query' => array( |
|
95 | - 'territory_id' => $territory_id |
|
96 | - ) |
|
97 | - )); |
|
89 | + public function deleteAvoidanceZone($territory_id) |
|
90 | + { |
|
91 | + $result = Route4Me::makeRequst(array( |
|
92 | + 'url' => Endpoint::AVOIDANCE_ZONE, |
|
93 | + 'method' => 'DELETEARRAY', |
|
94 | + 'query' => array( |
|
95 | + 'territory_id' => $territory_id |
|
96 | + ) |
|
97 | + )); |
|
98 | 98 | |
99 | - return $result; |
|
100 | - } |
|
99 | + return $result; |
|
100 | + } |
|
101 | 101 | |
102 | - public function updateAvoidanceZone($params) |
|
103 | - { |
|
104 | - $avoidanceZone = Route4Me::makeRequst(array( |
|
105 | - 'url' => Endpoint::AVOIDANCE_ZONE, |
|
106 | - 'method' => 'PUT', |
|
107 | - 'body' => $params, |
|
102 | + public function updateAvoidanceZone($params) |
|
103 | + { |
|
104 | + $avoidanceZone = Route4Me::makeRequst(array( |
|
105 | + 'url' => Endpoint::AVOIDANCE_ZONE, |
|
106 | + 'method' => 'PUT', |
|
107 | + 'body' => $params, |
|
108 | 108 | |
109 | - )); |
|
109 | + )); |
|
110 | 110 | |
111 | - return $avoidanceZone; |
|
112 | - } |
|
111 | + return $avoidanceZone; |
|
112 | + } |
|
113 | 113 | } |
@@ -18,14 +18,14 @@ |
||
18 | 18 | |
19 | 19 | $territoryParams['type'] = TerritoryTypes::CIRCLE; |
20 | 20 | $territoryParams['data'] = array( |
21 | - "37.569752822786455,-77.47833251953125", |
|
22 | - "5000" |
|
21 | + "37.569752822786455,-77.47833251953125", |
|
22 | + "5000" |
|
23 | 23 | ); |
24 | 24 | |
25 | 25 | $AvoisanceZoneParameters = AvoidanceZone::fromArray(array( |
26 | - "territory_name" => "Test Territory ".strval(rand(10000,99999)), |
|
27 | - "territory_color" => "ff7700", |
|
28 | - "territory" => $territoryParams |
|
26 | + "territory_name" => "Test Territory ".strval(rand(10000,99999)), |
|
27 | + "territory_color" => "ff7700", |
|
28 | + "territory" => $territoryParams |
|
29 | 29 | )); |
30 | 30 | |
31 | 31 | $avoidancezone = new AvoidanceZone(); |
@@ -18,14 +18,14 @@ |
||
18 | 18 | |
19 | 19 | $territoryParams['type'] = TerritoryTypes::CIRCLE; |
20 | 20 | $territoryParams['data'] = array( |
21 | - "37.569752822786455,-77.47833251953125", |
|
22 | - "5000" |
|
21 | + "37.569752822786455,-77.47833251953125", |
|
22 | + "5000" |
|
23 | 23 | ); |
24 | 24 | |
25 | 25 | $TerritoryParameters = Territory::fromArray(array( |
26 | - "territory_name" => "Test Territory ".strval(rand(10000,99999)), |
|
27 | - "territory_color" => "ff7700", |
|
28 | - "territory" => $territoryParams |
|
26 | + "territory_name" => "Test Territory ".strval(rand(10000,99999)), |
|
27 | + "territory_color" => "ff7700", |
|
28 | + "territory" => $territoryParams |
|
29 | 29 | )); |
30 | 30 | |
31 | 31 | $territory = new Territory(); |
@@ -17,9 +17,9 @@ |
||
17 | 17 | // Example refers to the process of searching for the routed locations |
18 | 18 | |
19 | 19 | $params = array( |
20 | - 'offset' => 0, |
|
21 | - 'limit' => 5, |
|
22 | - 'display' => 'routed' |
|
20 | + 'offset' => 0, |
|
21 | + 'limit' => 5, |
|
22 | + 'display' => 'routed' |
|
23 | 23 | ); |
24 | 24 | |
25 | 25 | $abcResult = $ablocation->searchAddressBookLocations($params); |
@@ -14,10 +14,10 @@ |
||
14 | 14 | $ablocation = new AddressBookLocation(); |
15 | 15 | |
16 | 16 | $params = array( |
17 | - "query" => "David", |
|
18 | - "fields" => "first_name,last_name,address_email, address_alias, address_1", |
|
19 | - "offset" => 0, |
|
20 | - "limit" => 20, |
|
17 | + "query" => "David", |
|
18 | + "fields" => "first_name,last_name,address_email, address_alias, address_1", |
|
19 | + "offset" => 0, |
|
20 | + "limit" => 20, |
|
21 | 21 | ); |
22 | 22 | |
23 | 23 | $abcResult = $ablocation->searchAddressBookLocations($params); |
@@ -27,13 +27,13 @@ |
||
27 | 27 | |
28 | 28 | // Add a file note |
29 | 29 | $noteParameters = array( |
30 | - "strFilename" => "notes.csv", |
|
31 | - "route_id" => $route_id, |
|
32 | - "address_id" => $route_destination_id, |
|
33 | - "dev_lat" => 33.132675170898, |
|
34 | - "dev_lng" => -83.244743347168, |
|
35 | - "device_type" => "web", |
|
36 | - "strUpdateType" => "ANY_FILE" |
|
30 | + "strFilename" => "notes.csv", |
|
31 | + "route_id" => $route_id, |
|
32 | + "address_id" => $route_destination_id, |
|
33 | + "dev_lat" => 33.132675170898, |
|
34 | + "dev_lng" => -83.244743347168, |
|
35 | + "device_type" => "web", |
|
36 | + "strUpdateType" => "ANY_FILE" |
|
37 | 37 | ); |
38 | 38 | |
39 | 39 | $address = new Address(); |
@@ -13,8 +13,8 @@ discard block |
||
13 | 13 | Route4Me::setApiKey('11111111111111111111111111111111'); |
14 | 14 | |
15 | 15 | $gcParameters = (array)Geocoding::fromArray(array( |
16 | - "offset" => 0, |
|
17 | - "limit" => 5 |
|
16 | + "offset" => 0, |
|
17 | + "limit" => 5 |
|
18 | 18 | )); |
19 | 19 | |
20 | 20 | $geocoding = new Geocoding(); |
@@ -22,6 +22,6 @@ discard block |
||
22 | 22 | $response = $geocoding->getStreetData($gcParameters); |
23 | 23 | |
24 | 24 | foreach ($response as $gcode) { |
25 | - Route4Me::simplePrint($gcode); |
|
26 | - echo "<br>"; |
|
25 | + Route4Me::simplePrint($gcode); |
|
26 | + echo "<br>"; |
|
27 | 27 | } |
@@ -16,13 +16,13 @@ |
||
16 | 16 | $order = new Order(); |
17 | 17 | |
18 | 18 | $orderParameters = Order::fromArray(array( |
19 | - "offset" => 0, |
|
20 | - 'limit' => 5, |
|
19 | + "offset" => 0, |
|
20 | + 'limit' => 5, |
|
21 | 21 | )); |
22 | 22 | |
23 | 23 | $response = $order->getOrders($orderParameters); |
24 | 24 | |
25 | 25 | foreach ($response['results'] as $key => $order) { |
26 | - Route4Me::simplePrint($order); |
|
27 | - echo "<br>"; |
|
26 | + Route4Me::simplePrint($order); |
|
27 | + echo "<br>"; |
|
28 | 28 | } |