Merge pull request #13921 from pradpnayak/noticeErrorFix
[civicrm-core.git] / api / v3 / examples / Setting / GetSpecifiedDomains.php
1 <?php
2 /**
3 * Test Generated example demonstrating the Setting.get API.
4 *
5 * Shows getting a variable for specified domains.
6 *
7 * @return array
8 * API result array
9 */
10 function setting_get_example() {
11 $params = [
12 'domain_id' => [
13 '0' => 1,
14 '1' => 2,
15 ],
16 'return' => [
17 '0' => 'uniq_email_per_site',
18 ],
19 ];
20
21 try{
22 $result = civicrm_api3('Setting', 'get', $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 [
30 'is_error' => 1,
31 'error_message' => $errorMessage,
32 'error_code' => $errorCode,
33 'error_data' => $errorData,
34 ];
35 }
36
37 return $result;
38 }
39
40 /**
41 * Function returns array of result expected from previous function.
42 *
43 * @return array
44 * API result array
45 */
46 function setting_get_expectedresult() {
47
48 $expectedResult = [
49 'is_error' => 0,
50 'version' => 3,
51 'count' => 2,
52 'values' => [
53 '1' => [
54 'uniq_email_per_site' => 0,
55 ],
56 '2' => [
57 'uniq_email_per_site' => '1',
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 "testCreateSettingMultipleDomains"
68 * and can be found at:
69 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/SettingTest.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 */