3 * Test Generated example demonstrating the Setting.create API.
8 function setting_create_example() {
11 'uniq_email_per_site' => 1,
15 $result = civicrm_api3('Setting', 'create', $params);
17 catch (CiviCRM_API3_Exception
$e) {
19 $errorMessage = $e->getMessage();
20 $errorCode = $e->getErrorCode();
21 $errorData = $e->getExtraParams();
24 'error_message' => $errorMessage,
25 'error_code' => $errorCode,
26 'error_data' => $errorData,
34 * Function returns array of result expected from previous function.
39 function setting_create_expectedresult() {
41 $expectedResult = array(
48 'uniq_email_per_site' => '1',
53 return $expectedResult;
57 * This example has been generated from the API test suite.
58 * The test that created it is called "testCreateSetting"
59 * and can be found at:
60 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/SettingTest.php
62 * You can see the outcome of the API tests at
63 * https://test.civicrm.org/job/CiviCRM-master-git/
65 * To Learn about the API read
66 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
68 * Browse the api on your own site with the api explorer
69 * http://MYSITE.ORG/path/to/civicrm/api
71 * Read more about testing here
72 * http://wiki.civicrm.org/confluence/display/CRM/Testing
74 * API Standards documentation:
75 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards