commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / api / v3 / examples / Event / Create.php
1 <?php
2 /**
3 * Test Generated example demonstrating the Event.create API.
4 *
5 * @return array
6 * API result array
7 */
8 function event_create_example() {
9 $params = array(
10 'title' => 'Annual CiviCRM meet',
11 'summary' => 'If you have any CiviCRM realted issues or want to track where CiviCRM is heading, Sign up now',
12 'description' => 'This event is intended to give brief idea about progess of CiviCRM and giving solutions to common user issues',
13 'event_type_id' => 1,
14 'is_public' => 1,
15 'start_date' => 20081021,
16 'end_date' => 20081023,
17 'is_online_registration' => 1,
18 'registration_start_date' => 20080601,
19 'registration_end_date' => '2008-10-15',
20 'max_participants' => 100,
21 'event_full_text' => 'Sorry! We are already full',
22 'is_monetary' => 0,
23 'is_active' => 1,
24 'is_show_location' => 0,
25 );
26
27 try{
28 $result = civicrm_api3('Event', 'create', $params);
29 }
30 catch (CiviCRM_API3_Exception $e) {
31 // Handle error here.
32 $errorMessage = $e->getMessage();
33 $errorCode = $e->getErrorCode();
34 $errorData = $e->getExtraParams();
35 return array(
36 'error' => $errorMessage,
37 'error_code' => $errorCode,
38 'error_data' => $errorData,
39 );
40 }
41
42 return $result;
43 }
44
45 /**
46 * Function returns array of result expected from previous function.
47 *
48 * @return array
49 * API result array
50 */
51 function event_create_expectedresult() {
52
53 $expectedResult = array(
54 'is_error' => 0,
55 'version' => 3,
56 'count' => 1,
57 'id' => 3,
58 'values' => array(
59 '3' => array(
60 'id' => '3',
61 'title' => 'Annual CiviCRM meet',
62 'summary' => 'If you have any CiviCRM realted issues or want to track where CiviCRM is heading, Sign up now',
63 'description' => 'This event is intended to give brief idea about progess of CiviCRM and giving solutions to common user issues',
64 'event_type_id' => '1',
65 'participant_listing_id' => '',
66 'is_public' => '1',
67 'start_date' => '2013-07-29 00:00:00',
68 'end_date' => '2013-08-04 00:00:00',
69 'is_online_registration' => '1',
70 'registration_link_text' => '',
71 'registration_start_date' => '20080601000000',
72 'registration_end_date' => '20081015000000',
73 'max_participants' => '100',
74 'event_full_text' => 'Sorry! We are already full',
75 'is_monetary' => 0,
76 'financial_type_id' => '',
77 'payment_processor' => '',
78 'is_map' => '',
79 'is_active' => '1',
80 'fee_label' => '',
81 'is_show_location' => 0,
82 'loc_block_id' => '',
83 'default_role_id' => '',
84 'intro_text' => '',
85 'footer_text' => '',
86 'confirm_title' => '',
87 'confirm_text' => '',
88 'confirm_footer_text' => '',
89 'is_email_confirm' => '',
90 'confirm_email_text' => '',
91 'confirm_from_name' => '',
92 'confirm_from_email' => '',
93 'cc_confirm' => '',
94 'bcc_confirm' => '',
95 'default_fee_id' => '',
96 'default_discount_fee_id' => '',
97 'thankyou_title' => '',
98 'thankyou_text' => '',
99 'thankyou_footer_text' => '',
100 'is_pay_later' => '',
101 'pay_later_text' => '',
102 'pay_later_receipt' => '',
103 'is_partial_payment' => '',
104 'initial_amount_label' => '',
105 'initial_amount_help_text' => '',
106 'min_initial_amount' => '',
107 'is_multiple_registrations' => '',
108 'allow_same_participant_emails' => '',
109 'has_waitlist' => '',
110 'requires_approval' => '',
111 'expiration_time' => '',
112 'waitlist_text' => '',
113 'approval_req_text' => '',
114 'is_template' => 0,
115 'template_title' => '',
116 'created_id' => '',
117 'created_date' => '2013-07-28 08:49:19',
118 'currency' => '',
119 'campaign_id' => '',
120 'is_share' => '',
121 'is_confirm_enabled' => '',
122 'parent_event_id' => '',
123 'slot_label_id' => '',
124 'dedupe_rule_group_id' => '',
125 'is_billing_required' => '',
126 ),
127 ),
128 );
129
130 return $expectedResult;
131 }
132
133 /*
134 * This example has been generated from the API test suite.
135 * The test that created it is called "testCreateEventSuccess"
136 * and can be found at:
137 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/EventTest.php
138 *
139 * You can see the outcome of the API tests at
140 * https://test.civicrm.org/job/CiviCRM-master-git/
141 *
142 * To Learn about the API read
143 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
144 *
145 * Browse the api on your own site with the api explorer
146 * http://MYSITE.ORG/path/to/civicrm/api
147 *
148 * Read more about testing here
149 * http://wiki.civicrm.org/confluence/display/CRM/Testing
150 *
151 * API Standards documentation:
152 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
153 */