3 * Test Generated example demonstrating the Setting.get API.
5 * Shows getting a variable for a current domain.
10 function setting_get_example() {
12 'return' => 'uniq_email_per_site',
16 $result = civicrm_api3('Setting', 'get', $params);
18 catch (CiviCRM_API3_Exception
$e) {
20 $errorMessage = $e->getMessage();
21 $errorCode = $e->getErrorCode();
22 $errorData = $e->getExtraParams();
25 'error_message' => $errorMessage,
26 'error_code' => $errorCode,
27 'error_data' => $errorData,
35 * Function returns array of result expected from previous function.
40 function setting_get_expectedresult() {
42 $expectedResult = array(
49 'uniq_email_per_site' => 0,
54 return $expectedResult;
58 * This example has been generated from the API test suite.
59 * The test that created it is called "testGetSetting"
60 * and can be found at:
61 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/SettingTest.php
63 * You can see the outcome of the API tests at
64 * https://test.civicrm.org/job/CiviCRM-master-git/
66 * To Learn about the API read
67 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
69 * Browse the api on your own site with the api explorer
70 * http://MYSITE.ORG/path/to/civicrm/api
72 * Read more about testing here
73 * http://wiki.civicrm.org/confluence/display/CRM/Testing
75 * API Standards documentation:
76 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards