cabd73c7be8b026575fadb53aab244abf2f86203
[civicrm-core.git] / api / v3 / examples / Address / Create.php
1 <?php
2 /**
3 * Test Generated example demonstrating the Address.create API.
4 *
5 * @return array
6 * API result array
7 */
8 function address_create_example() {
9 $params = array(
10 'contact_id' => 3,
11 'location_type_id' => 6,
12 'street_name' => 'Ambachtstraat',
13 'street_number' => '23',
14 'street_address' => 'Ambachtstraat 23',
15 'postal_code' => '6971 BN',
16 'country_id' => '1152',
17 'city' => 'Brummen',
18 'is_primary' => 1,
19 );
20
21 try{
22 $result = civicrm_api3('Address', 'create', $params);
23 }
24 catch (CiviCRM_API3_Exception $e) {
25 // Handle error here.
26 $errorMessage = $e->getMessage();
27 $errorCode = $e->getErrorCode();
28 $errorData = $e->getExtraParams();
29 return array(
30 'is_error' => 1,
31 'error_message' => $errorMessage,
32 'error_code' => $errorCode,
33 'error_data' => $errorData,
34 );
35 }
36
37 return $result;
38 }
39
40 /**
41 * Function returns array of result expected from previous function.
42 *
43 * @return array
44 * API result array
45 */
46 function address_create_expectedresult() {
47
48 $expectedResult = array(
49 'is_error' => 0,
50 'version' => 3,
51 'count' => 1,
52 'id' => 2,
53 'values' => array(
54 '2' => array(
55 'id' => '2',
56 'contact_id' => '3',
57 'location_type_id' => '6',
58 'is_primary' => '1',
59 'is_billing' => 0,
60 'street_address' => 'Ambachtstraat 23',
61 'street_number' => '23',
62 'street_name' => 'Ambachtstraat',
63 'city' => 'Brummen',
64 'postal_code' => '6971 BN',
65 'country_id' => '1152',
66 'manual_geo_code' => 0,
67 ),
68 ),
69 );
70
71 return $expectedResult;
72 }
73
74 /*
75 * This example has been generated from the API test suite.
76 * The test that created it is called "testCreateAddress"
77 * and can be found at:
78 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/AddressTest.php
79 *
80 * You can see the outcome of the API tests at
81 * https://test.civicrm.org/job/CiviCRM-master-git/
82 *
83 * To Learn about the API read
84 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
85 *
86 * Browse the api on your own site with the api explorer
87 * http://MYSITE.ORG/path/to/civicrm/api
88 *
89 * Read more about testing here
90 * http://wiki.civicrm.org/confluence/display/CRM/Testing
91 *
92 * API Standards documentation:
93 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
94 */