commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / api / v3 / examples / Contact / GetSingleContact.php
1 <?php
2 /**
3 * Test Generated example demonstrating the Contact.getsingle API.
4 *
5 * This demonstrates use of the 'format.single_entity_array' param.
6 * This param causes the only contact to be returned as an array without the other levels.
7 * It will be ignored if there is not exactly 1 result
8 *
9 * @return array
10 * API result array
11 */
12 function contact_getsingle_example() {
13 $params = array(
14 'id' => 17,
15 );
16
17 try{
18 $result = civicrm_api3('Contact', 'getsingle', $params);
19 }
20 catch (CiviCRM_API3_Exception $e) {
21 // Handle error here.
22 $errorMessage = $e->getMessage();
23 $errorCode = $e->getErrorCode();
24 $errorData = $e->getExtraParams();
25 return array(
26 'error' => $errorMessage,
27 'error_code' => $errorCode,
28 'error_data' => $errorData,
29 );
30 }
31
32 return $result;
33 }
34
35 /**
36 * Function returns array of result expected from previous function.
37 *
38 * @return array
39 * API result array
40 */
41 function contact_getsingle_expectedresult() {
42
43 $expectedResult = array(
44 'contact_id' => '17',
45 'contact_type' => 'Individual',
46 'contact_sub_type' => '',
47 'sort_name' => '',
48 'display_name' => 'Test Contact',
49 'do_not_email' => '',
50 'do_not_phone' => '',
51 'do_not_mail' => '',
52 'do_not_sms' => '',
53 'do_not_trade' => '',
54 'is_opt_out' => 0,
55 'legal_identifier' => '',
56 'external_identifier' => '',
57 'nick_name' => '',
58 'legal_name' => '',
59 'image_URL' => '',
60 'preferred_communication_method' => '',
61 'preferred_language' => '',
62 'preferred_mail_format' => '',
63 'first_name' => 'Test',
64 'middle_name' => '',
65 'last_name' => 'Contact',
66 'prefix_id' => '',
67 'suffix_id' => '',
68 'formal_title' => '',
69 'communication_style_id' => '',
70 'job_title' => '',
71 'gender_id' => '',
72 'birth_date' => '',
73 'is_deceased' => 0,
74 'deceased_date' => '',
75 'household_name' => '',
76 'organization_name' => '',
77 'sic_code' => '',
78 'contact_is_deleted' => 0,
79 'current_employer' => '',
80 'address_id' => '',
81 'street_address' => '',
82 'supplemental_address_1' => '',
83 'supplemental_address_2' => '',
84 'city' => '',
85 'postal_code_suffix' => '',
86 'postal_code' => '',
87 'geo_code_1' => '',
88 'geo_code_2' => '',
89 'state_province_id' => '',
90 'country_id' => '',
91 'phone_id' => '',
92 'phone_type_id' => '',
93 'phone' => '',
94 'email_id' => '',
95 'email' => '',
96 'on_hold' => '',
97 'im_id' => '',
98 'provider_id' => '',
99 'im' => '',
100 'worldregion_id' => '',
101 'world_region' => '',
102 'individual_prefix' => '',
103 'individual_suffix' => '',
104 'communication_style' => '',
105 'gender' => '',
106 'state_province_name' => '',
107 'state_province' => '',
108 'country' => '',
109 'id' => '17',
110 );
111
112 return $expectedResult;
113 }
114
115 /*
116 * This example has been generated from the API test suite.
117 * The test that created it is called "testContactGetSingleEntityArray"
118 * and can be found at:
119 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/ContactTest.php
120 *
121 * You can see the outcome of the API tests at
122 * https://test.civicrm.org/job/CiviCRM-master-git/
123 *
124 * To Learn about the API read
125 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
126 *
127 * Browse the api on your own site with the api explorer
128 * http://MYSITE.ORG/path/to/civicrm/api
129 *
130 * Read more about testing here
131 * http://wiki.civicrm.org/confluence/display/CRM/Testing
132 *
133 * API Standards documentation:
134 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
135 */