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