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