Merge pull request #4947 from eileenmcnaughton/examples
[civicrm-core.git] / api / v3 / examples / Phone / Get.php
1 <?php
2 /**
3 * @file
4 * Test Generated API Example.
5 * See bottom of this file for more detail.
6 */
7
8 /**
9 * Test Generated example of using phone get API.
10 *
11 *
12 * @return array
13 * API result array
14 */
15 function phone_get_example() {
16 $params = array(
17 'contact_id' => 7,
18 'phone' => '(123) 456-7890',
19 );
20
21 try{
22 $result = civicrm_api3('phone', 'get', $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 'error' => $errorMessage,
31 'error_code' => $errorCode,
32 'error_data' => $errorData,
33 );
34 }
35
36 return $result;
37 }
38
39 /**
40 * Function returns array of result expected from previous function.
41 *
42 * @return array
43 * API result array
44 */
45 function phone_get_expectedresult() {
46
47 $expectedResult = array(
48 'is_error' => 0,
49 'version' => 3,
50 'count' => 1,
51 'id' => 4,
52 'values' => array(
53 '4' => array(
54 'id' => '4',
55 'contact_id' => '7',
56 'location_type_id' => '10',
57 'is_primary' => '1',
58 'is_billing' => 0,
59 'phone' => '(123) 456-7890',
60 'phone_numeric' => '1234567890',
61 'phone_type_id' => '1',
62 ),
63 ),
64 );
65
66 return $expectedResult;
67 }
68
69 /**
70 * This example has been generated from the API test suite.
71 * The test that created it is called
72 * testGet
73 * and can be found in
74 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/PhoneTest.php
75 *
76 * You can see the outcome of the API tests at
77 * https://test.civicrm.org/job/CiviCRM-master-git/
78 *
79 * To Learn about the API read
80 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
81 *
82 * Browse the api on your own site with the api explorer
83 * http://MYSITE.ORG/path/to/civicrm/api/explorer
84 *
85 * Read more about testing here
86 * http://wiki.civicrm.org/confluence/display/CRM/Testing
87 *
88 * API Standards documentation:
89 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
90 */