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