Merge remote-tracking branch 'upstream/4.5' into 4.5-master-2015-02-02-18-36-16
[civicrm-core.git] / api / v3 / examples / Setting / Create.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 create API.
10 *
11 *
12 * @return array
13 * API result array
14 */
15 function setting_create_example() {
16 $params = array(
17 'domain_id' => 2,
18 'uniq_email_per_site' => 1,
19 );
20
21 try{
22 $result = civicrm_api3('setting', 'create', $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_create_expectedresult() {
46
47 $expectedResult = array(
48 'is_error' => 0,
49 'version' => 3,
50 'count' => 1,
51 'id' => 2,
52 'values' => array(
53 '2' => array(
54 'uniq_email_per_site' => '1',
55 ),
56 ),
57 );
58
59 return $expectedResult;
60 }
61
62 /**
63 * This example has been generated from the API test suite.
64 * The test that created it is called
65 * testCreateSetting
66 * and can be found in
67 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/SettingTest.php
68 *
69 * You can see the outcome of the API tests at
70 * https://test.civicrm.org/job/CiviCRM-master-git/
71 *
72 * To Learn about the API read
73 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
74 *
75 * Browse the api on your own site with the api explorer
76 * http://MYSITE.ORG/path/to/civicrm/api/explorer
77 *
78 * Read more about testing here
79 * http://wiki.civicrm.org/confluence/display/CRM/Testing
80 *
81 * API Standards documentation:
82 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
83 */