Merge pull request #10155 from totten/master-pdf-save2
[civicrm-core.git] / api / v3 / examples / Event / IsCurrentOption.php
1 <?php
2 /**
3 * Test Generated example demonstrating the Event.get API.
4 *
5 * Demonstrates use of is.Current option.
6 *
7 * @return array
8 * API result array
9 */
10 function event_get_example() {
11 $params = array(
12 'isCurrent' => 1,
13 );
14
15 try{
16 $result = civicrm_api3('Event', 'get', $params);
17 }
18 catch (CiviCRM_API3_Exception $e) {
19 // Handle error here.
20 $errorMessage = $e->getMessage();
21 $errorCode = $e->getErrorCode();
22 $errorData = $e->getExtraParams();
23 return array(
24 'is_error' => 1,
25 'error_message' => $errorMessage,
26 'error_code' => $errorCode,
27 'error_data' => $errorData,
28 );
29 }
30
31 return $result;
32 }
33
34 /**
35 * Function returns array of result expected from previous function.
36 *
37 * @return array
38 * API result array
39 */
40 function event_get_expectedresult() {
41
42 $expectedResult = array(
43 'is_error' => 0,
44 'version' => 3,
45 'count' => 1,
46 'id' => 3,
47 'values' => array(
48 '3' => array(
49 'id' => '3',
50 'title' => 'Annual CiviCRM meet 2',
51 'event_title' => 'Annual CiviCRM meet 2',
52 'summary' => 'If you have any CiviCRM realted issues or want to track where CiviCRM is heading, Sign up now',
53 'description' => 'This event is intended to give brief idea about progess of CiviCRM and giving solutions to common user issues',
54 'event_description' => 'This event is intended to give brief idea about progess of CiviCRM and giving solutions to common user issues',
55 'event_type_id' => '1',
56 'participant_listing_id' => 0,
57 'is_public' => '1',
58 'start_date' => '2013-07-29 00:00:00',
59 'event_start_date' => '2013-07-29 00:00:00',
60 'end_date' => '2013-08-04 00:00:00',
61 'event_end_date' => '2013-08-04 00:00:00',
62 'is_online_registration' => '1',
63 'registration_start_date' => '2010-06-01 00:00:00',
64 'registration_end_date' => '2010-10-15 00:00:00',
65 'max_participants' => '100',
66 'event_full_text' => 'Sorry! We are already full',
67 'is_monetary' => 0,
68 'is_map' => 0,
69 'is_active' => '1',
70 'is_show_location' => 0,
71 'default_role_id' => '1',
72 'is_email_confirm' => 0,
73 'is_pay_later' => 0,
74 'is_partial_payment' => 0,
75 'is_multiple_registrations' => 0,
76 'max_additional_participants' => 0,
77 'allow_same_participant_emails' => 0,
78 'allow_selfcancelxfer' => 0,
79 'selfcancelxfer_time' => 0,
80 'is_template' => 0,
81 'created_date' => '2013-07-28 08:49:19',
82 'is_share' => '1',
83 'is_confirm_enabled' => '1',
84 'is_billing_required' => 0,
85 ),
86 ),
87 );
88
89 return $expectedResult;
90 }
91
92 /*
93 * This example has been generated from the API test suite.
94 * The test that created it is called "testGetIsCurrent"
95 * and can be found at:
96 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/EventTest.php
97 *
98 * You can see the outcome of the API tests at
99 * https://test.civicrm.org/job/CiviCRM-master-git/
100 *
101 * To Learn about the API read
102 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
103 *
104 * Browse the api on your own site with the api explorer
105 * http://MYSITE.ORG/path/to/civicrm/api
106 *
107 * Read more about testing here
108 * http://wiki.civicrm.org/confluence/display/CRM/Testing
109 *
110 * API Standards documentation:
111 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
112 */