test tweaks and updated examples
[civicrm-core.git] / api / v3 / examples / Activity / ContactRefCustomField.php
1 <?php
2 /**
3 * Test Generated example of using activity Create API
4 * demonstrates create with Contact Reference Custom Field *
5 */
6 function activity_create_example(){
7 $params = array(
8 'source_contact_id' => 1,
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 'custom_2' => '1',
18 );
19
20 try{
21 $result = civicrm_api3('activity', 'Create', $params);
22 }
23 catch (CiviCRM_API3_Exception $e) {
24 // handle error here
25 $errorMessage = $e->getMessage();
26 $errorCode = $e->getErrorCode();
27 $errorData = $e->getExtraParams();
28 return array('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData);
29 }
30
31 return $result;
32 }
33
34 /**
35 * Function returns array of result expected from previous function
36 */
37 function activity_create_expectedresult(){
38
39 $expectedResult = array(
40 'is_error' => 0,
41 'version' => 3,
42 'count' => 1,
43 'id' => 1,
44 'values' => array(
45 '1' => array(
46 'id' => '1',
47 'source_record_id' => '',
48 'activity_type_id' => '46',
49 'subject' => 'test activity type id',
50 'activity_date_time' => '20110602143613',
51 'duration' => '120',
52 'location' => 'Pensulvania',
53 'phone_id' => '',
54 'phone_number' => '',
55 'details' => 'a test activity',
56 'status_id' => '2',
57 'priority_id' => '1',
58 'parent_id' => '',
59 'is_test' => '',
60 'medium_id' => '',
61 'is_auto' => '',
62 'relationship_id' => '',
63 'is_current_revision' => '',
64 'original_id' => '',
65 'result' => '',
66 'is_deleted' => '',
67 'campaign_id' => '',
68 'engagement_level' => '',
69 'weight' => '',
70 ),
71 ),
72 );
73
74 return $expectedResult;
75 }
76
77
78 /*
79 * This example has been generated from the API test suite. The test that created it is called
80 *
81 * testActivityCreateCustomContactRefField and can be found in
82 * http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/ActivityTest.php
83 *
84 * You can see the outcome of the API tests at
85 * http://tests.dev.civicrm.org/trunk/results-api_v3
86 *
87 * To Learn about the API read
88 * http://book.civicrm.org/developer/current/techniques/api/
89 *
90 * and review the wiki at
91 * http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
92 *
93 * Read more about testing here
94 * http://wiki.civicrm.org/confluence/display/CRM/Testing
95 *
96 * API Standards documentation:
97 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
98 */