17f2e27c273eb420003f010764d82a80374ca2e0
[civicrm-core.git] / api / v3 / examples / PledgePayment / Get.php
1 <?php
2 /**
3 * Test Generated example demonstrating the PledgePayment.get API.
4 *
5 * @return array
6 * API result array
7 */
8 function pledge_payment_get_example() {
9 $params = array();
10
11 try{
12 $result = civicrm_api3('PledgePayment', '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(
20 'error' => $errorMessage,
21 'error_code' => $errorCode,
22 'error_data' => $errorData,
23 );
24 }
25
26 return $result;
27 }
28
29 /**
30 * Function returns array of result expected from previous function.
31 *
32 * @return array
33 * API result array
34 */
35 function pledge_payment_get_expectedresult() {
36
37 $expectedResult = array(
38 'is_error' => 0,
39 'version' => 3,
40 'count' => 5,
41 'values' => array(
42 '1' => array(
43 'id' => '1',
44 'pledge_id' => '1',
45 'scheduled_amount' => '20.00',
46 'currency' => 'USD',
47 'scheduled_date' => '20130728085413',
48 'reminder_count' => 0,
49 'status_id' => '2',
50 ),
51 '2' => array(
52 'id' => '2',
53 'pledge_id' => '1',
54 'scheduled_amount' => '20.00',
55 'currency' => 'USD',
56 'scheduled_date' => '20130728085413',
57 'reminder_count' => 0,
58 'status_id' => '2',
59 ),
60 '3' => array(
61 'id' => '3',
62 'pledge_id' => '1',
63 'scheduled_amount' => '20.00',
64 'currency' => 'USD',
65 'scheduled_date' => '20130728085413',
66 'reminder_count' => 0,
67 'status_id' => '2',
68 ),
69 '4' => array(
70 'id' => '4',
71 'pledge_id' => '1',
72 'scheduled_amount' => '20.00',
73 'currency' => 'USD',
74 'scheduled_date' => '20130728085413',
75 'reminder_count' => 0,
76 'status_id' => '2',
77 ),
78 '5' => array(
79 'id' => '5',
80 'pledge_id' => '1',
81 'scheduled_amount' => '20.00',
82 'currency' => 'USD',
83 'scheduled_date' => '20130728085413',
84 'reminder_count' => 0,
85 'status_id' => '2',
86 ),
87 ),
88 );
89
90 return $expectedResult;
91 }
92
93 /*
94 * This example has been generated from the API test suite.
95 * The test that created it is called "testGetPledgePayment"
96 * and can be found at:
97 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/PledgePaymentTest.php
98 *
99 * You can see the outcome of the API tests at
100 * https://test.civicrm.org/job/CiviCRM-master-git/
101 *
102 * To Learn about the API read
103 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
104 *
105 * Browse the api on your own site with the api explorer
106 * http://MYSITE.ORG/path/to/civicrm/api
107 *
108 * Read more about testing here
109 * http://wiki.civicrm.org/confluence/display/CRM/Testing
110 *
111 * API Standards documentation:
112 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
113 */