Merge pull request #9779 from WeMoveEU/CRM-19963
[civicrm-core.git] / api / v3 / examples / ParticipantStatusType / Get.php
1 <?php
2 /**
3 * Test Generated example demonstrating the ParticipantStatusType.get API.
4 *
5 * @return array
6 * API result array
7 */
8 function participant_status_type_get_example() {
9 $params = array(
10 'name' => 'test status',
11 'label' => 'I am a test',
12 'class' => 'Positive',
13 'is_reserved' => 0,
14 'is_active' => 1,
15 'is_counted' => 1,
16 'visibility_id' => 1,
17 'weight' => 10,
18 );
19
20 try{
21 $result = civicrm_api3('ParticipantStatusType', 'get', $params);
22 }
23 catch (CiviCRM_API3_Exception $e) {
24 // Handle error here.
25 $errorMessage = $e->getMessage();
26 $errorCode = $e->getErrorCode();
27 $errorData = $e->getExtraParams();
28 return array(
29 'is_error' => 1,
30 'error_message' => $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 participant_status_type_get_expectedresult() {
46
47 $expectedResult = array(
48 'is_error' => 0,
49 'version' => 3,
50 'count' => 1,
51 'id' => 18,
52 'values' => array(
53 '18' => array(
54 'id' => '18',
55 'name' => 'test status',
56 'label' => 'I am a test',
57 'class' => 'Positive',
58 'is_reserved' => 0,
59 'is_active' => '1',
60 'is_counted' => '1',
61 'weight' => '10',
62 'visibility_id' => '1',
63 ),
64 ),
65 );
66
67 return $expectedResult;
68 }
69
70 /*
71 * This example has been generated from the API test suite.
72 * The test that created it is called "testGetParticipantStatusType"
73 * and can be found at:
74 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/ParticipantStatusTypeTest.php
75 *
76 * You can see the outcome of the API tests at
77 * https://test.civicrm.org/job/CiviCRM-master-git/
78 *
79 * To Learn about the API read
80 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
81 *
82 * Browse the api on your own site with the api explorer
83 * http://MYSITE.ORG/path/to/civicrm/api
84 *
85 * Read more about testing here
86 * http://wiki.civicrm.org/confluence/display/CRM/Testing
87 *
88 * API Standards documentation:
89 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
90 */