@@ -22,26 +22,26 @@ |
||
22 | 22 | |
23 | 23 | // Itereate through all the existing activity types |
24 | 24 | foreach ($activityTypes->getConstants() as $prop => $value) { |
25 | - $activityParameters = ActivityParameters::fromArray([ |
|
26 | - 'activity_type' => $value, |
|
27 | - 'limit' => 2, |
|
28 | - 'offset' => 0, |
|
29 | - 'route_id' => $route_id, |
|
30 | - ]); |
|
25 | + $activityParameters = ActivityParameters::fromArray([ |
|
26 | + 'activity_type' => $value, |
|
27 | + 'limit' => 2, |
|
28 | + 'offset' => 0, |
|
29 | + 'route_id' => $route_id, |
|
30 | + ]); |
|
31 | 31 | |
32 | - $activities = new ActivityParameters(); |
|
33 | - $results = $activities->searchActivities($activityParameters); |
|
32 | + $activities = new ActivityParameters(); |
|
33 | + $results = $activities->searchActivities($activityParameters); |
|
34 | 34 | |
35 | - if (!is_array($results) || !is_array($results['results']) || sizeof($results['results']) < 1) { |
|
36 | - continue; |
|
37 | - } |
|
35 | + if (!is_array($results) || !is_array($results['results']) || sizeof($results['results']) < 1) { |
|
36 | + continue; |
|
37 | + } |
|
38 | 38 | |
39 | - ++$count; |
|
39 | + ++$count; |
|
40 | 40 | |
41 | - foreach ($results as $key => $activity) { |
|
42 | - Route4Me::simplePrint($activity); |
|
43 | - echo '<br>'; |
|
44 | - } |
|
41 | + foreach ($results as $key => $activity) { |
|
42 | + Route4Me::simplePrint($activity); |
|
43 | + echo '<br>'; |
|
44 | + } |
|
45 | 45 | |
46 | - echo '------------------- <br><br>'; |
|
46 | + echo '------------------- <br><br>'; |
|
47 | 47 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | $activities = new ActivityParameters(); |
33 | 33 | $results = $activities->searchActivities($activityParameters); |
34 | 34 | |
35 | - if (!is_array($results) || !is_array($results['results']) || sizeof($results['results']) < 1) { |
|
35 | + if (!is_array($results) || !is_array($results['results']) || sizeof($results['results'])<1) { |
|
36 | 36 | continue; |
37 | 37 | } |
38 | 38 |
@@ -16,9 +16,9 @@ |
||
16 | 16 | // Example refers to the process of searching for the routed locations |
17 | 17 | |
18 | 18 | $params = [ |
19 | - 'offset' => 0, |
|
20 | - 'limit' => 5, |
|
21 | - 'display' => 'routed', |
|
19 | + 'offset' => 0, |
|
20 | + 'limit' => 5, |
|
21 | + 'display' => 'routed', |
|
22 | 22 | ]; |
23 | 23 | |
24 | 24 | $abcResult = $abLocation->searchAddressBookLocations($params); |
@@ -16,10 +16,10 @@ |
||
16 | 16 | // Example refers to the process of searching for text and specifing returned fields. |
17 | 17 | |
18 | 18 | $params = [ |
19 | - 'query' => 'David', |
|
20 | - 'fields' => 'first_name,address_email', |
|
21 | - 'offset' => 0, |
|
22 | - 'limit' => 5, |
|
19 | + 'query' => 'David', |
|
20 | + 'fields' => 'first_name,address_email', |
|
21 | + 'offset' => 0, |
|
22 | + 'limit' => 5, |
|
23 | 23 | ]; |
24 | 24 | |
25 | 25 | $abcResult = $abLocation->searchAddressBookLocations($params); |
@@ -17,8 +17,8 @@ |
||
17 | 17 | assert(!is_null($route_id), "Cannot retrieve a random route ID"); |
18 | 18 | |
19 | 19 | $params = [ |
20 | - 'device_tracking_history' => true, |
|
21 | - 'route_id' => $route_id, |
|
20 | + 'device_tracking_history' => true, |
|
21 | + 'route_id' => $route_id, |
|
22 | 22 | ]; |
23 | 23 | |
24 | 24 | // Get route tracking |
@@ -23,7 +23,7 @@ |
||
23 | 23 | |
24 | 24 | // Remove a custom note type |
25 | 25 | $noteParameters = [ |
26 | - 'id' => $randomCustomNoteID, |
|
26 | + 'id' => $randomCustomNoteID, |
|
27 | 27 | ]; |
28 | 28 | |
29 | 29 | $addressNote = new AddressNote(); |
@@ -17,7 +17,7 @@ |
||
17 | 17 | $customNotes = $addressNote->getAllCustomNoteTypes(); |
18 | 18 | |
19 | 19 | assert(!is_null($customNotes), "Cannot retrieve all custom note types"); |
20 | -assert(sizeof($customNotes) > 0, "There is no custom note type in the user's account"); |
|
20 | +assert(sizeof($customNotes)>0, "There is no custom note type in the user's account"); |
|
21 | 21 | |
22 | 22 | $randomCustomNoteID = $customNotes[rand(0, sizeof($customNotes) - 1)]['note_custom_type_id']; |
23 | 23 |
@@ -26,13 +26,13 @@ discard block |
||
26 | 26 | |
27 | 27 | // Add an address note |
28 | 28 | $noteParameters = [ |
29 | - 'route_id' => $route_id, |
|
30 | - 'address_id' => $route_destination_id, |
|
31 | - 'dev_lat' => $addressRand['lat'], |
|
32 | - 'dev_lng' => $addressRand['lng'], |
|
33 | - 'device_type' => 'web', |
|
34 | - 'strUpdateType' => 'dropoff', |
|
35 | - 'strNoteContents' => 'Test '.time(), |
|
29 | + 'route_id' => $route_id, |
|
30 | + 'address_id' => $route_destination_id, |
|
31 | + 'dev_lat' => $addressRand['lat'], |
|
32 | + 'dev_lng' => $addressRand['lng'], |
|
33 | + 'device_type' => 'web', |
|
34 | + 'strUpdateType' => 'dropoff', |
|
35 | + 'strNoteContents' => 'Test '.time(), |
|
36 | 36 | ]; |
37 | 37 | |
38 | 38 | $addressNote = new AddressNote(); |
@@ -43,8 +43,8 @@ discard block |
||
43 | 43 | |
44 | 44 | // Get address notes |
45 | 45 | $noteParameters = [ |
46 | - 'route_id' => $route_id, |
|
47 | - 'route_destination_id' => $route_destination_id, |
|
46 | + 'route_id' => $route_id, |
|
47 | + 'route_destination_id' => $route_destination_id, |
|
48 | 48 | ]; |
49 | 49 | |
50 | 50 | $addressNote = new AddressNote(); |
@@ -54,10 +54,10 @@ discard block |
||
54 | 54 | echo 'Destination note count --> '.$notes['destination_note_count'].'<br>'; |
55 | 55 | |
56 | 56 | foreach ($notes['notes'] as $note) { |
57 | - echo '========== Notes ==================<br>'; |
|
58 | - echo 'note_id --> '.$note['note_id'].'<br>'; |
|
59 | - $content = isset($note['contents']) ? $note['contents'] : ''; |
|
60 | - if (strlen($content) > 0) { |
|
61 | - echo "contents --> $content".'<br>'; |
|
62 | - } |
|
57 | + echo '========== Notes ==================<br>'; |
|
58 | + echo 'note_id --> '.$note['note_id'].'<br>'; |
|
59 | + $content = isset($note['contents']) ? $note['contents'] : ''; |
|
60 | + if (strlen($content) > 0) { |
|
61 | + echo "contents --> $content".'<br>'; |
|
62 | + } |
|
63 | 63 | } |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | assert(!is_null($route_id), "Cannot retrieve random route_id"); |
20 | 20 | |
21 | 21 | // Get random address's id from selected route above |
22 | -$addressRand = (array) $route->GetRandomAddressFromRoute($route_id); |
|
22 | +$addressRand = (array)$route->GetRandomAddressFromRoute($route_id); |
|
23 | 23 | $route_destination_id = $addressRand['route_destination_id']; |
24 | 24 | |
25 | 25 | assert(!is_null($route_destination_id), "Cannot retrieve random address"); |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | echo '========== Notes ==================<br>'; |
58 | 58 | echo 'note_id --> '.$note['note_id'].'<br>'; |
59 | 59 | $content = isset($note['contents']) ? $note['contents'] : ''; |
60 | - if (strlen($content) > 0) { |
|
60 | + if (strlen($content)>0) { |
|
61 | 61 | echo "contents --> $content".'<br>'; |
62 | 62 | } |
63 | 63 | } |
@@ -25,15 +25,15 @@ |
||
25 | 25 | |
26 | 26 | // Add a custom note to a route |
27 | 27 | $noteParameters = [ |
28 | - 'route_id' => $routeId, |
|
29 | - 'address_id' => $route_destination_id, |
|
30 | - 'format' => 'json', |
|
31 | - 'dev_lat' => $addressRand['lat'], |
|
32 | - 'dev_lng' => $addressRand['lng'], |
|
33 | - 'custom_note_type[11]' => 'slippery', |
|
34 | - 'custom_note_type[10]' => 'Backdoor', |
|
35 | - 'strUpdateType' => 'dropoff', |
|
36 | - 'strNoteContents' => 'test1111', |
|
28 | + 'route_id' => $routeId, |
|
29 | + 'address_id' => $route_destination_id, |
|
30 | + 'format' => 'json', |
|
31 | + 'dev_lat' => $addressRand['lat'], |
|
32 | + 'dev_lng' => $addressRand['lng'], |
|
33 | + 'custom_note_type[11]' => 'slippery', |
|
34 | + 'custom_note_type[10]' => 'Backdoor', |
|
35 | + 'strUpdateType' => 'dropoff', |
|
36 | + 'strNoteContents' => 'test1111', |
|
37 | 37 | ]; |
38 | 38 | |
39 | 39 | $addressNote = new AddressNote(); |
@@ -18,7 +18,7 @@ |
||
18 | 18 | assert(!is_null($routeId), "Cannot retrieve random route_id"); |
19 | 19 | |
20 | 20 | // Get random address's id from the above selected route |
21 | -$addressRand = (array) $route->GetRandomAddressFromRoute($routeId); |
|
21 | +$addressRand = (array)$route->GetRandomAddressFromRoute($routeId); |
|
22 | 22 | $route_destination_id = $addressRand['route_destination_id']; |
23 | 23 | |
24 | 24 | assert(!is_null($route_destination_id), "Cannot retrieve random address"); |
@@ -25,13 +25,13 @@ |
||
25 | 25 | |
26 | 26 | // Add a file note |
27 | 27 | $noteParameters = [ |
28 | - 'strFilename' => 'notes.csv', |
|
29 | - 'route_id' => $route_id, |
|
30 | - 'address_id' => $route_destination_id, |
|
31 | - 'dev_lat' => $addressRand['lat'], |
|
32 | - 'dev_lng' => $addressRand['lng'], |
|
33 | - 'device_type' => 'web', |
|
34 | - 'strUpdateType' => 'ANY_FILE', |
|
28 | + 'strFilename' => 'notes.csv', |
|
29 | + 'route_id' => $route_id, |
|
30 | + 'address_id' => $route_destination_id, |
|
31 | + 'dev_lat' => $addressRand['lat'], |
|
32 | + 'dev_lng' => $addressRand['lng'], |
|
33 | + 'device_type' => 'web', |
|
34 | + 'strUpdateType' => 'ANY_FILE', |
|
35 | 35 | ]; |
36 | 36 | |
37 | 37 | $addressNote = new AddressNote(); |
@@ -18,7 +18,7 @@ |
||
18 | 18 | assert(!is_null($route_id), "Cannot retrieve random route_id"); |
19 | 19 | |
20 | 20 | // Get random address's id from selected route above |
21 | -$addressRand = (array) $route->GetRandomAddressFromRoute($route_id); |
|
21 | +$addressRand = (array)$route->GetRandomAddressFromRoute($route_id); |
|
22 | 22 | $route_destination_id = $addressRand['route_destination_id']; |
23 | 23 | |
24 | 24 | assert(!is_null($route_destination_id), "Cannot retrieve random address"); |
@@ -10,12 +10,12 @@ |
||
10 | 10 | |
11 | 11 | // Create a custom note type |
12 | 12 | $noteParameters = [ |
13 | - 'type' => 'To Do', |
|
14 | - 'values' => [ |
|
15 | - 'Pass a package', |
|
16 | - 'Pickup package', |
|
17 | - 'Do a service', |
|
18 | - ], |
|
13 | + 'type' => 'To Do', |
|
14 | + 'values' => [ |
|
15 | + 'Pass a package', |
|
16 | + 'Pickup package', |
|
17 | + 'Do a service', |
|
18 | + ], |
|
19 | 19 | ]; |
20 | 20 | |
21 | 21 | $addressNote = new AddressNote(); |