Merge pull request #5180 from monishdeb/master
[civicrm-core.git] / api / v3 / examples / ActivityContact / Create.php
CommitLineData
89bf81b4 1<?php
50fb255d 2/**
3 * Test Generated example of using activity_contact create API.
4 *
50fb255d 5 * @return array
6 * API result array
7 */
8function activity_contact_create_example() {
9 $params = array(
10 'contact_id' => 3,
11 'activity_id' => 1,
12 'record_type_id' => 2,
13 );
89bf81b4 14
50fb255d 15 try{
16 $result = civicrm_api3('activity_contact', 'create', $params);
17 }
18 catch (CiviCRM_API3_Exception $e) {
19 // Handle error here.
20 $errorMessage = $e->getMessage();
21 $errorCode = $e->getErrorCode();
22 $errorData = $e->getExtraParams();
23 return array(
24 'error' => $errorMessage,
25 'error_code' => $errorCode,
26 'error_data' => $errorData,
27 );
28 }
29
30 return $result;
89bf81b4 31}
32
33/**
50fb255d 34 * Function returns array of result expected from previous function.
35 *
36 * @return array
37 * API result array
89bf81b4 38 */
50fb255d 39function activity_contact_create_expectedresult() {
89bf81b4 40
41 $expectedResult = array(
50fb255d 42 'is_error' => 0,
43 'version' => 3,
44 'count' => 1,
45 'id' => 4,
46 'values' => array(
47 '4' => array(
48 'id' => '4',
49 'activity_id' => '1',
50 'contact_id' => '3',
51 'record_type_id' => '2',
52 ),
89bf81b4 53 ),
50fb255d 54 );
89bf81b4 55
56 return $expectedResult;
57}
58
50fb255d 59/**
60* This example has been generated from the API test suite.
61* The test that created it is called
62* testCreateActivityContact
63* and can be found in
89bf81b4 64* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/ActivityContactTest.php
65*
66* You can see the outcome of the API tests at
67* https://test.civicrm.org/job/CiviCRM-master-git/
68*
69* To Learn about the API read
70* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
71*
72* Browse the api on your own site with the api explorer
41d4d31f 73* http://MYSITE.ORG/path/to/civicrm/api
89bf81b4 74*
75* Read more about testing here
76* http://wiki.civicrm.org/confluence/display/CRM/Testing
77*
78* API Standards documentation:
79* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
80*/