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