@@ -19,9 +19,9 @@ discard block |
||
19 | 19 | |
20 | 20 | // Authenticate a user and get session guid |
21 | 21 | $recordParameters = Member::fromArray(array( |
22 | - 'strEmail' => '[email protected]', |
|
23 | - 'strPassword' => 'ddddddddddd', |
|
24 | - 'format' => 'json', |
|
22 | + 'strEmail' => '[email protected]', |
|
23 | + 'strPassword' => 'ddddddddddd', |
|
24 | + 'format' => 'json', |
|
25 | 25 | )); |
26 | 26 | |
27 | 27 | $response = $member->memberAuthentication($recordParameters); |
@@ -37,9 +37,9 @@ discard block |
||
37 | 37 | |
38 | 38 | // Validate the session |
39 | 39 | $params = Member::fromArray(array( |
40 | - 'session_guid' => $sessionGuid, |
|
41 | - 'member_id' => $memberID, |
|
42 | - 'format' => 'json', |
|
40 | + 'session_guid' => $sessionGuid, |
|
41 | + 'member_id' => $memberID, |
|
42 | + 'format' => 'json', |
|
43 | 43 | )); |
44 | 44 | |
45 | 45 | $response = $member->validateSession($params); |
@@ -16,15 +16,15 @@ |
||
16 | 16 | |
17 | 17 | // Create a config key |
18 | 18 | $createParams = Member::fromArray(array ( |
19 | - "config_key" => "My height", |
|
20 | - "config_value" => "182" |
|
19 | + "config_key" => "My height", |
|
20 | + "config_value" => "182" |
|
21 | 21 | )); |
22 | 22 | |
23 | 23 | $response = $member->newMemberConfigKey($createParams); |
24 | 24 | |
25 | 25 | // Delete a config key |
26 | 26 | $removeParams = Member::fromArray(array ( |
27 | - "config_key" => "My height" |
|
27 | + "config_key" => "My height" |
|
28 | 28 | )); |
29 | 29 | |
30 | 30 | $response = $member->removeMemberConfigKey($removeParams); |
@@ -13,8 +13,8 @@ |
||
13 | 13 | Route4Me::setApiKey('11111111111111111111111111111111'); |
14 | 14 | |
15 | 15 | $params = Member::fromArray(array ( |
16 | - "config_key" => "destination_icon_uri", |
|
17 | - "config_value" => "value" |
|
16 | + "config_key" => "destination_icon_uri", |
|
17 | + "config_value" => "value" |
|
18 | 18 | )); |
19 | 19 | |
20 | 20 | $member = new Member(); |
@@ -19,13 +19,13 @@ |
||
19 | 19 | $response = $member->getMemberConfigData($params); |
20 | 20 | |
21 | 21 | foreach ($response as $key => $value) { |
22 | - if (is_array($value)) { |
|
23 | - foreach ($value as $v1) { |
|
24 | - Route4Me::simplePrint($v1); |
|
25 | - echo "<br>"; |
|
26 | - } |
|
27 | - } else { |
|
28 | - echo "$key => $value <br>"; |
|
29 | - } |
|
30 | - echo "<br>"; |
|
22 | + if (is_array($value)) { |
|
23 | + foreach ($value as $v1) { |
|
24 | + Route4Me::simplePrint($v1); |
|
25 | + echo "<br>"; |
|
26 | + } |
|
27 | + } else { |
|
28 | + echo "$key => $value <br>"; |
|
29 | + } |
|
30 | + echo "<br>"; |
|
31 | 31 | } |
@@ -34,8 +34,8 @@ |
||
34 | 34 | |
35 | 35 | // Update existing configuration key data |
36 | 36 | $params = Member::fromArray(array ( |
37 | - "config_key" => $randomKey, |
|
38 | - "config_value" => $randomValue." Updated" |
|
37 | + "config_key" => $randomKey, |
|
38 | + "config_value" => $randomValue." Updated" |
|
39 | 39 | )); |
40 | 40 | |
41 | 41 | $response = $member->updateMemberConfigKey($params); |
@@ -32,15 +32,15 @@ |
||
32 | 32 | echo "randomKey -> $randomKey <br><br>"; |
33 | 33 | |
34 | 34 | $params = Member::fromArray(array ( |
35 | - "config_key" => $randomKey |
|
35 | + "config_key" => $randomKey |
|
36 | 36 | )); |
37 | 37 | |
38 | 38 | $response = $member->getMemberConfigData($params); |
39 | 39 | |
40 | 40 | foreach ($response as $key => $value) { |
41 | - if (is_array($value)) { |
|
42 | - Route4Me::simplePrint($value); |
|
43 | - } else { |
|
44 | - echo "$key => $value <br>"; |
|
45 | - } |
|
41 | + if (is_array($value)) { |
|
42 | + Route4Me::simplePrint($value); |
|
43 | + } else { |
|
44 | + echo "$key => $value <br>"; |
|
45 | + } |
|
46 | 46 | } |
@@ -13,8 +13,8 @@ |
||
13 | 13 | |
14 | 14 | // Get reandom address book location |
15 | 15 | $AdressBookLocationParameters = array( |
16 | - "limit" => 30, |
|
17 | - "offset" => 0 |
|
16 | + "limit" => 30, |
|
17 | + "offset" => 0 |
|
18 | 18 | ); |
19 | 19 | |
20 | 20 | $randomLocation = $abLocation->getRandomAddressBookLocation($AdressBookLocationParameters); |
@@ -14,10 +14,10 @@ discard block |
||
14 | 14 | Route4Me::setApiKey('11111111111111111111111111111111'); |
15 | 15 | |
16 | 16 | $AdressBookLocationParameters = AddressBookLocation::fromArray(array( |
17 | - "first_name" => "Test FirstName ".strval(rand(10000, 99999)), |
|
18 | - "address_1" => "Test Address1 ".strval(rand(10000, 99999)), |
|
19 | - "cached_lat" => 38.024654, |
|
20 | - "cached_lng" => -77.338814 |
|
17 | + "first_name" => "Test FirstName ".strval(rand(10000, 99999)), |
|
18 | + "address_1" => "Test Address1 ".strval(rand(10000, 99999)), |
|
19 | + "cached_lat" => 38.024654, |
|
20 | + "cached_lng" => -77.338814 |
|
21 | 21 | )); |
22 | 22 | |
23 | 23 | $abContacts = new AddressBookLocation(); |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | $address_id = -1; |
28 | 28 | |
29 | 29 | if (isset($createdContact['address_id'])) { |
30 | - $address_id = $createdContact["address_id"]; |
|
30 | + $address_id = $createdContact["address_id"]; |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | assert($address_id!=-1, "Creating of Address Book Location was failed. Try again!.. <br>"); |
@@ -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(); |