Merge remote-tracking branch 'upstream/4.3' into 4.3-master-2013-07-23-17-12-38
[civicrm-core.git] / api / v3 / examples / Activity / ContactRefCustomFieldGet.php
1 <?php
2
3 /*
4 Get with Contact Ref Custom Field
5 */
6 function activity_create_example(){
7 $params = array(
8 'source_contact_id' => 17,
9 'activity_type_id' => '46',
10 'subject' => 'test activity type id',
11 'activity_date_time' => '2011-06-02 14:36:13',
12 'status_id' => 2,
13 'priority_id' => 1,
14 'duration' => 120,
15 'location' => 'Pensulvania',
16 'details' => 'a test activity',
17 'version' => 3,
18 'custom_2' => '17',
19 );
20
21 $result = civicrm_api( 'activity','create',$params );
22
23 return $result;
24 }
25
26 /*
27 * Function returns array of result expected from previous function
28 */
29 function activity_create_expectedresult(){
30
31 $expectedResult = array(
32 'is_error' => 0,
33 'version' => 3,
34 'count' => 1,
35 'id' => 1,
36 'values' => array(
37 '1' => array(
38 'id' => '1',
39 'activity_type_id' => '46',
40 'subject' => 'test activity type id',
41 'activity_date_time' => '2011-06-02 14:36:13',
42 'duration' => '120',
43 'location' => 'Pensulvania',
44 'details' => 'a test activity',
45 'status_id' => '2',
46 'priority_id' => '1',
47 'is_test' => 0,
48 'is_auto' => 0,
49 'is_current_revision' => '1',
50 'is_deleted' => 0,
51 'source_contact_id' => '17',
52 'custom_2_id' => '17',
53 'custom_2_1_id' => '17',
54 'custom_2' => 'Contact, Test',
55 'custom_2_1' => 'Contact, Test',
56 ),
57 ),
58 );
59
60 return $expectedResult ;
61 }
62
63
64 /*
65 * This example has been generated from the API test suite. The test that created it is called
66 *
67 * testActivityCreateCustomContactRefField and can be found in
68 * http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/ActivityTest.php
69 *
70 * You can see the outcome of the API tests at
71 * http://tests.dev.civicrm.org/trunk/results-api_v3
72 *
73 * To Learn about the API read
74 * http://book.civicrm.org/developer/current/techniques/api/
75 *
76 * and review the wiki at
77 * http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
78 *
79 * Read more about testing here
80 * http://wiki.civicrm.org/confluence/display/CRM/Testing
81 *
82 * API Standards documentation:
83 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
84 */