Merge pull request #5047 from colemanw/CRM-15898
[civicrm-core.git] / api / v3 / examples / MembershipStatus / Get.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 membership_status get API.
10 *
11 *
12 * @return array
13 * API result array
14 */
15 function membership_status_get_example() {
16 $params = array(
17 'name' => 'test status',
18 );
19
20 try{
21 $result = civicrm_api3('membership_status', '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 'error' => $errorMessage,
30 'error_code' => $errorCode,
31 'error_data' => $errorData,
32 );
33 }
34
35 return $result;
36 }
37
38 /**
39 * Function returns array of result expected from previous function.
40 *
41 * @return array
42 * API result array
43 */
44 function membership_status_get_expectedresult() {
45
46 $expectedResult = array(
47 'is_error' => 0,
48 'version' => 3,
49 'count' => 1,
50 'id' => 9,
51 'values' => array(
52 '9' => array(
53 'id' => '9',
54 'name' => 'test status',
55 'label' => 'test status',
56 'start_event' => 'start_date',
57 'end_event' => 'end_date',
58 'is_current_member' => '1',
59 'is_admin' => 0,
60 'is_default' => 0,
61 'is_active' => '1',
62 'is_reserved' => 0,
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
73 * testGet
74 * and can be found in
75 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/MembershipStatusTest.php
76 *
77 * You can see the outcome of the API tests at
78 * https://test.civicrm.org/job/CiviCRM-master-git/
79 *
80 * To Learn about the API read
81 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
82 *
83 * Browse the api on your own site with the api explorer
84 * http://MYSITE.ORG/path/to/civicrm/api/explorer
85 *
86 * Read more about testing here
87 * http://wiki.civicrm.org/confluence/display/CRM/Testing
88 *
89 * API Standards documentation:
90 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
91 */