Merge pull request #5035 from TeNNoX/master
[civicrm-core.git] / api / v3 / examples / Setting / CreateAllDomains.php
CommitLineData
6a488035 1<?php
fb32de45 2/**
50fb255d 3 * @file
4 * Test Generated API Example.
5 * See bottom of this file for more detail.
6a488035 6 */
6a488035 7
50fb255d 8/**
9 * Test Generated example of using setting create API.
10 *
11 * shows setting a variable for all domains
12 *
13 * @return array
14 * API result array
15 */
16function setting_create_example() {
17 $params = array(
18 'domain_id' => 'all',
19 'uniq_email_per_site' => 1,
20 );
6a488035 21
50fb255d 22 try{
23 $result = civicrm_api3('setting', 'create', $params);
24 }
25 catch (CiviCRM_API3_Exception $e) {
26 // Handle error here.
27 $errorMessage = $e->getMessage();
28 $errorCode = $e->getErrorCode();
29 $errorData = $e->getExtraParams();
30 return array(
31 'error' => $errorMessage,
32 'error_code' => $errorCode,
33 'error_data' => $errorData,
34 );
35 }
36
37 return $result;
6a488035
TO
38}
39
fb32de45 40/**
50fb255d 41 * Function returns array of result expected from previous function.
42 *
43 * @return array
44 * API result array
6a488035 45 */
50fb255d 46function setting_create_expectedresult() {
6a488035 47
53ca8fd7 48 $expectedResult = array(
50fb255d 49 'is_error' => 0,
50 'version' => 3,
51 'count' => 3,
52 'values' => array(
53ca8fd7 53 '1' => array(
50fb255d 54 'uniq_email_per_site' => '1',
55 ),
53ca8fd7 56 '2' => array(
50fb255d 57 'uniq_email_per_site' => '1',
58 ),
53ca8fd7 59 '3' => array(
50fb255d 60 'uniq_email_per_site' => '1',
61 ),
6a488035 62 ),
50fb255d 63 );
6a488035 64
fb32de45 65 return $expectedResult;
6a488035
TO
66}
67
50fb255d 68/**
69* This example has been generated from the API test suite.
70* The test that created it is called
71* testCreateSettingMultipleDomains
72* and can be found in
69d79249 73* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/SettingTest.php
6a488035
TO
74*
75* You can see the outcome of the API tests at
69d79249 76* https://test.civicrm.org/job/CiviCRM-master-git/
6a488035
TO
77*
78* To Learn about the API read
69d79249 79* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
6a488035 80*
69d79249
E
81* Browse the api on your own site with the api explorer
82* http://MYSITE.ORG/path/to/civicrm/api/explorer
6a488035
TO
83*
84* Read more about testing here
85* http://wiki.civicrm.org/confluence/display/CRM/Testing
86*
87* API Standards documentation:
88* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
4ed37178 89*/