commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / api / v3 / examples / CustomGroup / Get.php
1 <?php
2 /**
3 * Test Generated example demonstrating the CustomGroup.get API.
4 *
5 * @return array
6 * API result array
7 */
8 function custom_group_get_example() {
9 $params = array();
10
11 try{
12 $result = civicrm_api3('CustomGroup', 'get', $params);
13 }
14 catch (CiviCRM_API3_Exception $e) {
15 // Handle error here.
16 $errorMessage = $e->getMessage();
17 $errorCode = $e->getErrorCode();
18 $errorData = $e->getExtraParams();
19 return array(
20 'error' => $errorMessage,
21 'error_code' => $errorCode,
22 'error_data' => $errorData,
23 );
24 }
25
26 return $result;
27 }
28
29 /**
30 * Function returns array of result expected from previous function.
31 *
32 * @return array
33 * API result array
34 */
35 function custom_group_get_expectedresult() {
36
37 $expectedResult = array(
38 'is_error' => 0,
39 'version' => 3,
40 'count' => 1,
41 'id' => 1,
42 'values' => array(
43 '1' => array(
44 'id' => '1',
45 'name' => 'test_group_1',
46 'title' => 'Test_Group_1',
47 'extends' => 'Individual',
48 'style' => 'Inline',
49 'collapse_display' => '1',
50 'help_pre' => 'This is Pre Help For Test Group 1',
51 'help_post' => 'This is Post Help For Test Group 1',
52 'weight' => '2',
53 'is_active' => '1',
54 'table_name' => 'civicrm_value_test_group_1_1',
55 'is_multiple' => 0,
56 'collapse_adv_display' => 0,
57 'is_reserved' => 0,
58 ),
59 ),
60 );
61
62 return $expectedResult;
63 }
64
65 /*
66 * This example has been generated from the API test suite.
67 * The test that created it is called "testGetCustomGroupSuccess"
68 * and can be found at:
69 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/CustomGroupTest.php
70 *
71 * You can see the outcome of the API tests at
72 * https://test.civicrm.org/job/CiviCRM-master-git/
73 *
74 * To Learn about the API read
75 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
76 *
77 * Browse the api on your own site with the api explorer
78 * http://MYSITE.ORG/path/to/civicrm/api
79 *
80 * Read more about testing here
81 * http://wiki.civicrm.org/confluence/display/CRM/Testing
82 *
83 * API Standards documentation:
84 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
85 */