Short array syntax - auto-convert api dir
[civicrm-core.git] / api / v3 / examples / StatusPreference / Create.php
CommitLineData
1d8ee3d6 1<?php
2/**
3 * Test Generated example demonstrating the StatusPreference.create API.
4 *
5 * @return array
6 * API result array
7 */
8function status_preference_create_example() {
cf8f0fff 9 $params = [
1d8ee3d6 10 'name' => 'test_check',
11 'domain_id' => 1,
12 'hush_until' => '20151212',
13 'ignore_severity' => 'cRItical',
14 'check_info' => '',
cf8f0fff 15 ];
1d8ee3d6 16
17 try{
18 $result = civicrm_api3('StatusPreference', 'create', $params);
19 }
20 catch (CiviCRM_API3_Exception $e) {
21 // Handle error here.
22 $errorMessage = $e->getMessage();
23 $errorCode = $e->getErrorCode();
24 $errorData = $e->getExtraParams();
cf8f0fff 25 return [
1d8ee3d6 26 'is_error' => 1,
27 'error_message' => $errorMessage,
28 'error_code' => $errorCode,
29 'error_data' => $errorData,
cf8f0fff 30 ];
1d8ee3d6 31 }
32
33 return $result;
34}
35
36/**
37 * Function returns array of result expected from previous function.
38 *
39 * @return array
40 * API result array
41 */
42function status_preference_create_expectedresult() {
43
cf8f0fff 44 $expectedResult = [
1d8ee3d6 45 'is_error' => 0,
46 'version' => 3,
47 'count' => 1,
48 'id' => 4,
cf8f0fff
CW
49 'values' => [
50 '4' => [
1d8ee3d6 51 'id' => '4',
52 'domain_id' => '1',
53 'name' => 'test_check',
54 'hush_until' => '20151212000000',
55 'ignore_severity' => '5',
56 'prefs' => '',
57 'check_info' => '',
cf8f0fff
CW
58 ],
59 ],
60 ];
1d8ee3d6 61
62 return $expectedResult;
63}
64
65/*
66* This example has been generated from the API test suite.
67* The test that created it is called "testCreateSeverityByName"
68* and can be found at:
69* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/StatusPreferenceTest.php
70*
71* You can see the outcome of the API tests at
72* https://test.civicrm.org/job/CiviCRM-master-git/
73*
74* To Learn about the API read
75* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
76*
77* Browse the api on your own site with the api explorer
78* http://MYSITE.ORG/path/to/civicrm/api
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
85*/