Merge pull request #1049 from eileenmcnaughton/CRM-12887
[civicrm-core.git] / api / v3 / examples / PhoneGet.php
1 <?php
2
3 /*
4
5 */
6 function phone_get_example(){
7 $params = array(
8 'contact_id' => 8,
9 'phone' => '(123) 456-7890',
10 'version' => 3,
11 );
12
13 $result = civicrm_api( 'phone','get',$params );
14
15 return $result;
16 }
17
18 /*
19 * Function returns array of result expected from previous function
20 */
21 function phone_get_expectedresult(){
22
23 $expectedResult = array(
24 'is_error' => 0,
25 'version' => 3,
26 'count' => 1,
27 'id' => 1,
28 'values' => array(
29 '1' => array(
30 'id' => '1',
31 'contact_id' => '8',
32 'location_type_id' => '11',
33 'is_primary' => '1',
34 'is_billing' => 0,
35 'phone' => '(123) 456-7890',
36 'phone_numeric' => '1234567890',
37 'phone_type_id' => '1',
38 ),
39 ),
40 );
41
42 return $expectedResult ;
43 }
44
45
46 /*
47 * This example has been generated from the API test suite. The test that created it is called
48 *
49 * testGet and can be found in
50 * http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/PhoneTest.php
51 *
52 * You can see the outcome of the API tests at
53 * http://tests.dev.civicrm.org/trunk/results-api_v3
54 *
55 * To Learn about the API read
56 * http://book.civicrm.org/developer/current/techniques/api/
57 *
58 * and review the wiki at
59 * http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
60 *
61 * Read more about testing here
62 * http://wiki.civicrm.org/confluence/display/CRM/Testing
63 *
64 * API Standards documentation:
65 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
66 */