Merge pull request #5101 from agh1/context-abbrev
[civicrm-core.git] / api / v3 / examples / UFJoin / Create.php
1 <?php
2 /**
3 * Test Generated example of using uf_join create API.
4 *
5 *
6 * @return array
7 * API result array
8 */
9 function uf_join_create_example() {
10 $params = array(
11 'module' => 'CiviContribute',
12 'entity_table' => 'civicrm_contribution_page',
13 'entity_id' => 1,
14 'weight' => 1,
15 'uf_group_id' => 11,
16 'is_active' => 1,
17 'sequential' => 1,
18 );
19
20 try{
21 $result = civicrm_api3('uf_join', '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(
29 'error' => $errorMessage,
30 'error_code' => $errorCode,
31 'error_data' => $errorData,
32 );
33 }
34
35 return $result;
36 }
37
38 /**
39 * Function returns array of result expected from previous function.
40 *
41 * @return array
42 * API result array
43 */
44 function uf_join_create_expectedresult() {
45
46 $expectedResult = array(
47 'is_error' => 0,
48 'version' => 3,
49 'count' => 1,
50 'id' => 0,
51 'values' => array(
52 '0' => array(
53 'id' => '1',
54 'is_active' => '1',
55 'module' => 'CiviContribute',
56 'entity_table' => 'civicrm_contribution_page',
57 'entity_id' => '1',
58 'weight' => '1',
59 'uf_group_id' => '11',
60 'module_data' => '',
61 ),
62 ),
63 );
64
65 return $expectedResult;
66 }
67
68 /**
69 * This example has been generated from the API test suite.
70 * The test that created it is called
71 * testCreateUFJoin
72 * and can be found in
73 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/UFJoinTest.php
74 *
75 * You can see the outcome of the API tests at
76 * https://test.civicrm.org/job/CiviCRM-master-git/
77 *
78 * To Learn about the API read
79 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
80 *
81 * Browse the api on your own site with the api explorer
82 * http://MYSITE.ORG/path/to/civicrm/api
83 *
84 * Read more about testing here
85 * http://wiki.civicrm.org/confluence/display/CRM/Testing
86 *
87 * API Standards documentation:
88 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
89 */