Merge remote-tracking branch 'upstream/4.3' into 4.3-master-2013-07-14-22-39-05
[civicrm-core.git] / api / v3 / examples / CustomGroupGet.php
CommitLineData
6a488035
TO
1<?php
2
3/*
4
5 */
6function custom_group_get_example(){
53ca8fd7 7$params = array(
6a488035
TO
8 'version' => 3,
9);
10
11 $result = civicrm_api( 'custom_group','get',$params );
12
13 return $result;
14}
15
16/*
17 * Function returns array of result expected from previous function
18 */
19function custom_group_get_expectedresult(){
20
53ca8fd7 21 $expectedResult = array(
6a488035
TO
22 'is_error' => 0,
23 'version' => 3,
24 'count' => 1,
25 'id' => 1,
53ca8fd7 26 'values' => array(
27 '1' => array(
6a488035
TO
28 'id' => '1',
29 'name' => 'test_group_1',
30 'title' => 'Test_Group_1',
31 'extends' => 'Individual',
32 'style' => 'Inline',
33 'collapse_display' => '1',
34 'help_pre' => 'This is Pre Help For Test Group 1',
35 'help_post' => 'This is Post Help For Test Group 1',
36 'weight' => '2',
37 'is_active' => '1',
38 'table_name' => 'civicrm_value_test_group_1_1',
39 'is_multiple' => 0,
40 'collapse_adv_display' => 0,
41 ),
42 ),
43);
44
45 return $expectedResult ;
46}
47
48
49/*
50* This example has been generated from the API test suite. The test that created it is called
51*
52* testGetCustomGroupSuccess and can be found in
53* http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/CustomGroupTest.php
54*
55* You can see the outcome of the API tests at
56* http://tests.dev.civicrm.org/trunk/results-api_v3
57*
58* To Learn about the API read
59* http://book.civicrm.org/developer/current/techniques/api/
60*
61* and review the wiki at
62* http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
63*
64* Read more about testing here
65* http://wiki.civicrm.org/confluence/display/CRM/Testing
66*
67* API Standards documentation:
68* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
69*/