Merge pull request #13134 from agileware/CIVICRM-1006
[civicrm-core.git] / api / v3 / examples / Setting / GetSpecifiedDomains.php
CommitLineData
6a488035 1<?php
50fb255d 2/**
a828d7b8 3 * Test Generated example demonstrating the Setting.get API.
50fb255d 4 *
5c49fee0 5 * Shows getting a variable for specified domains.
50fb255d 6 *
7 * @return array
8 * API result array
9 */
10function setting_get_example() {
11 $params = array(
12 'domain_id' => array(
6a488035
TO
13 '0' => 1,
14 '1' => 2,
15 ),
50fb255d 16 'return' => array(
6a488035
TO
17 '0' => 'uniq_email_per_site',
18 ),
50fb255d 19 );
6a488035 20
50fb255d 21 try{
a828d7b8 22 $result = civicrm_api3('Setting', 'get', $params);
50fb255d 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(
1d8ee3d6 30 'is_error' => 1,
31 'error_message' => $errorMessage,
50fb255d 32 'error_code' => $errorCode,
33 'error_data' => $errorData,
34 );
35 }
6a488035 36
50fb255d 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_get_expectedresult() {
6a488035 47
53ca8fd7 48 $expectedResult = array(
50fb255d 49 'is_error' => 0,
50 'version' => 3,
51 'count' => 2,
52 'values' => array(
53ca8fd7 53 '1' => array(
50fb255d 54 'uniq_email_per_site' => 0,
55 ),
53ca8fd7 56 '2' => array(
50fb255d 57 'uniq_email_per_site' => '1',
58 ),
6a488035 59 ),
50fb255d 60 );
6a488035 61
fb32de45 62 return $expectedResult;
6a488035
TO
63}
64
a828d7b8 65/*
50fb255d 66* This example has been generated from the API test suite.
a828d7b8
CW
67* The test that created it is called "testCreateSettingMultipleDomains"
68* and can be found at:
69d79249 69* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/SettingTest.php
6a488035
TO
70*
71* You can see the outcome of the API tests at
69d79249 72* https://test.civicrm.org/job/CiviCRM-master-git/
6a488035
TO
73*
74* To Learn about the API read
69d79249 75* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
6a488035 76*
69d79249 77* Browse the api on your own site with the api explorer
41d4d31f 78* http://MYSITE.ORG/path/to/civicrm/api
6a488035
TO
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
4ed37178 85*/