Merge pull request #9772 from jitendrapurohit/CRM-4287fix
[civicrm-core.git] / api / v3 / examples / PledgePayment / Create.php
1 <?php
2 /**
3 * Test Generated example demonstrating the PledgePayment.create API.
4 *
5 * @return array
6 * API result array
7 */
8 function pledge_payment_create_example() {
9 $params = array(
10 'contact_id' => 1,
11 'pledge_id' => 1,
12 'contribution_id' => 1,
13 'status_id' => 1,
14 'actual_amount' => 20,
15 );
16
17 try{
18 $result = civicrm_api3('PledgePayment', 'create', $params);
19 }
20 catch (CiviCRM_API3_Exception $e) {
21 // Handle error here.
22 $errorMessage = $e->getMessage();
23 $errorCode = $e->getErrorCode();
24 $errorData = $e->getExtraParams();
25 return array(
26 'is_error' => 1,
27 'error_message' => $errorMessage,
28 'error_code' => $errorCode,
29 'error_data' => $errorData,
30 );
31 }
32
33 return $result;
34 }
35
36 /**
37 * Function returns array of result expected from previous function.
38 *
39 * @return array
40 * API result array
41 */
42 function pledge_payment_create_expectedresult() {
43
44 $expectedResult = array(
45 'is_error' => 0,
46 'version' => 3,
47 'count' => 1,
48 'id' => 1,
49 'values' => array(
50 '1' => array(
51 'id' => '1',
52 'pledge_id' => '1',
53 'contribution_id' => '1',
54 'scheduled_amount' => '',
55 'actual_amount' => '20',
56 'currency' => 'USD',
57 'scheduled_date' => '',
58 'reminder_date' => '',
59 'reminder_count' => '',
60 'status_id' => '1',
61 ),
62 ),
63 );
64
65 return $expectedResult;
66 }
67
68 /*
69 * This example has been generated from the API test suite.
70 * The test that created it is called "testCreatePledgePayment"
71 * and can be found at:
72 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/PledgePaymentTest.php
73 *
74 * You can see the outcome of the API tests at
75 * https://test.civicrm.org/job/CiviCRM-master-git/
76 *
77 * To Learn about the API read
78 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
79 *
80 * Browse the api on your own site with the api explorer
81 * http://MYSITE.ORG/path/to/civicrm/api
82 *
83 * Read more about testing here
84 * http://wiki.civicrm.org/confluence/display/CRM/Testing
85 *
86 * API Standards documentation:
87 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
88 */