CRM-13072 further tweak on example formatter
[civicrm-core.git] / api / v3 / examples / ConstantGet.php
CommitLineData
6a488035
TO
1<?php
2
3/*
4
5 */
6function constant_get_example(){
edb0d67a 7$params = array(
8 'field' => 'location_type_id',
6a488035
TO
9 'version' => 3,
10);
11
12 $result = civicrm_api( 'constant','get',$params );
13
14 return $result;
15}
16
17/*
18 * Function returns array of result expected from previous function
19 */
20function constant_get_expectedresult(){
21
edb0d67a 22 $expectedResult = array(
6a488035
TO
23 'is_error' => 0,
24 'version' => 3,
25 'count' => 5,
edb0d67a 26 'values' => array(
6a488035
TO
27 '5' => 'Billing',
28 '1' => 'Home',
29 '3' => 'Main',
30 '4' => 'Other',
31 '2' => 'Work',
32 ),
33);
34
35 return $expectedResult ;
36}
37
38
39/*
40* This example has been generated from the API test suite. The test that created it is called
41*
42* testLocationTypeGet and can be found in
43* http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/ConstantTest.php
44*
45* You can see the outcome of the API tests at
46* http://tests.dev.civicrm.org/trunk/results-api_v3
47*
48* To Learn about the API read
49* http://book.civicrm.org/developer/current/techniques/api/
50*
51* and review the wiki at
52* http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
53*
54* Read more about testing here
55* http://wiki.civicrm.org/confluence/display/CRM/Testing
56*
57* API Standards documentation:
58* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
59*/