Merge pull request #4124 from tohojo/adv-search-fix
[civicrm-core.git] / api / v3 / examples / Activity / Create.php
1 <?php
2 /**
3 * Test Generated example of using activity create API
4 * *
5 */
6 function activity_create_example(){
7 $params = array(
8 'source_contact_id' => 1,
9 'activity_type_id' => '49',
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_1' => 'custom string',
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' => '49',
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 * testActivityCreateCustom and can be found in
82 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/ActivityTest.php
83 *
84 * You can see the outcome of the API tests at
85 * https://test.civicrm.org/job/CiviCRM-master-git/
86 *
87 * To Learn about the API read
88 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
89 *
90 * Browse the api on your own site with the api explorer
91 * http://MYSITE.ORG/path/to/civicrm/api/explorer
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 */