commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / api / v3 / examples / Activity / DateTimeLow.php
1 <?php
2 /**
3 * Test Generated example demonstrating the Activity.get API.
4 *
5 * Demonstrates _low filter (at time of writing doesn't work if contact_id is set.
6 *
7 * @return array
8 * API result array
9 */
10 function activity_get_example() {
11 $params = array(
12 'filter.activity_date_time_low' => '20120101000000',
13 'sequential' => 1,
14 );
15
16 try{
17 $result = civicrm_api3('Activity', 'get', $params);
18 }
19 catch (CiviCRM_API3_Exception $e) {
20 // Handle error here.
21 $errorMessage = $e->getMessage();
22 $errorCode = $e->getErrorCode();
23 $errorData = $e->getExtraParams();
24 return array(
25 'error' => $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 activity_get_expectedresult() {
41
42 $expectedResult = array(
43 'is_error' => 0,
44 'version' => 3,
45 'count' => 1,
46 'id' => 2,
47 'values' => array(
48 '0' => array(
49 'id' => '2',
50 'activity_type_id' => '51',
51 'subject' => 'Make-it-Happen Meeting',
52 'activity_date_time' => '2012-02-16 00:00:00',
53 'duration' => '120',
54 'location' => 'Pennsylvania',
55 'details' => 'a test activity',
56 'status_id' => '1',
57 'priority_id' => '1',
58 'is_test' => 0,
59 'is_auto' => 0,
60 'is_current_revision' => '1',
61 'is_deleted' => 0,
62 'source_contact_id' => '1',
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 "testGetFilterMaxDate"
73 * and can be found at:
74 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/ActivityTest.php
75 *
76 * You can see the outcome of the API tests at
77 * https://test.civicrm.org/job/CiviCRM-master-git/
78 *
79 * To Learn about the API read
80 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
81 *
82 * Browse the api on your own site with the api explorer
83 * http://MYSITE.ORG/path/to/civicrm/api
84 *
85 * Read more about testing here
86 * http://wiki.civicrm.org/confluence/display/CRM/Testing
87 *
88 * API Standards documentation:
89 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
90 */