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