updated examples
[civicrm-core.git] / api / v3 / examples / Pledge / Get.php
1 <?php
2 /**
3 * Test Generated example of using pledge get API
4 * *
5 */
6 function pledge_get_example(){
7 $params = array(
8 'pledge_id' => 1,
9 );
10
11 try{
12 $result = civicrm_api3('pledge', 'get', $params);
13 }
14 catch (CiviCRM_API3_Exception $e) {
15 // handle error here
16 $errorMessage = $e->getMessage();
17 $errorCode = $e->getErrorCode();
18 $errorData = $e->getExtraParams();
19 return array('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData);
20 }
21
22 return $result;
23 }
24
25 /**
26 * Function returns array of result expected from previous function
27 */
28 function pledge_get_expectedresult(){
29
30 $expectedResult = array(
31 'is_error' => 0,
32 'version' => 3,
33 'count' => 1,
34 'id' => 1,
35 'values' => array(
36 '1' => array(
37 'contact_id' => '5',
38 'contact_type' => 'Individual',
39 'contact_sub_type' => '',
40 'sort_name' => 'Anderson, Anthony',
41 'display_name' => 'Mr. Anthony Anderson II',
42 'pledge_id' => '1',
43 'pledge_amount' => '100.00',
44 'pledge_create_date' => '2014-09-28 00:00:00',
45 'pledge_status' => 'Pending',
46 'pledge_total_paid' => '',
47 'pledge_next_pay_date' => '2014-09-30 00:00:00',
48 'pledge_next_pay_amount' => '20.00',
49 'pledge_outstanding_amount' => '',
50 'pledge_financial_type' => 'Donation',
51 'pledge_contribution_page_id' => '',
52 'pledge_frequency_interval' => '5',
53 'pledge_frequency_unit' => 'year',
54 'pledge_is_test' => 0,
55 'pledge_campaign_id' => '',
56 'pledge_currency' => 'USD',
57 'id' => '1',
58 ),
59 ),
60 );
61
62 return $expectedResult;
63 }
64
65
66 /*
67 * This example has been generated from the API test suite. The test that created it is called
68 *
69 * testGetPledge and can be found in
70 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/PledgeTest.php
71 *
72 * You can see the outcome of the API tests at
73 * https://test.civicrm.org/job/CiviCRM-master-git/
74 *
75 * To Learn about the API read
76 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
77 *
78 * Browse the api on your own site with the api explorer
79 * http://MYSITE.ORG/path/to/civicrm/api/explorer
80 *
81 * Read more about testing here
82 * http://wiki.civicrm.org/confluence/display/CRM/Testing
83 *
84 * API Standards documentation:
85 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
86 */