Merge pull request #1226 from kurund/CRM-11137
[civicrm-core.git] / api / v3 / examples / MembershipStatusGet.php
1 <?php
2
3 /*
4
5 */
6 function membership_status_get_example(){
7 $params = array(
8 'name' => 'test status',
9 'version' => 3,
10 );
11
12 $result = civicrm_api( 'membership_status','get',$params );
13
14 return $result;
15 }
16
17 /*
18 * Function returns array of result expected from previous function
19 */
20 function membership_status_get_expectedresult(){
21
22 $expectedResult = array(
23 'is_error' => 0,
24 'version' => 3,
25 'count' => 1,
26 'id' => 10,
27 'values' => array(
28 '10' => array(
29 'id' => '10',
30 'name' => 'test status',
31 'label' => 'test status',
32 'start_event' => 'start_date',
33 'end_event' => 'end_date',
34 'is_current_member' => '1',
35 'is_admin' => 0,
36 'is_default' => 0,
37 'is_active' => '1',
38 'is_reserved' => 0,
39 ),
40 ),
41 );
42
43 return $expectedResult ;
44 }
45
46
47 /*
48 * This example has been generated from the API test suite. The test that created it is called
49 *
50 * testGet and can be found in
51 * http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/MembershipStatusTest.php
52 *
53 * You can see the outcome of the API tests at
54 * http://tests.dev.civicrm.org/trunk/results-api_v3
55 *
56 * To Learn about the API read
57 * http://book.civicrm.org/developer/current/techniques/api/
58 *
59 * and review the wiki at
60 * http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
61 *
62 * Read more about testing here
63 * http://wiki.civicrm.org/confluence/display/CRM/Testing
64 *
65 * API Standards documentation:
66 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
67 */