Merge pull request #520 from dlobo/CRM-12274
[civicrm-core.git] / api / v3 / examples / PhoneGet.php
CommitLineData
6a488035
TO
1<?php
2
3/*
4
5 */
6function phone_get_example(){
7$params = array(
8 'contact_id' => '',
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 */
21function 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 ),
38 ),
39);
40
41 return $expectedResult ;
42}
43
44
45/*
46* This example has been generated from the API test suite. The test that created it is called
47*
48* testGet and can be found in
49* http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/PhoneTest.php
50*
51* You can see the outcome of the API tests at
52* http://tests.dev.civicrm.org/trunk/results-api_v3
53*
54* To Learn about the API read
55* http://book.civicrm.org/developer/current/techniques/api/
56*
57* and review the wiki at
58* http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
59*
60* Read more about testing here
61* http://wiki.civicrm.org/confluence/display/CRM/Testing
62*
63* API Standards documentation:
64* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
65*/