Cleanup api generated example docblocks
[civicrm-core.git] / api / v3 / examples / PledgePayment / Create.php
CommitLineData
6a488035 1<?php
50fb255d 2/**
3 * Test Generated example of using pledge_payment create API.
4 *
50fb255d 5 * @return array
6 * API result array
7 */
8function 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 );
6a488035 16
50fb255d 17 try{
18 $result = civicrm_api3('pledge_payment', '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 'error' => $errorMessage,
27 'error_code' => $errorCode,
28 'error_data' => $errorData,
29 );
30 }
31
32 return $result;
6a488035
TO
33}
34
fb32de45 35/**
50fb255d 36 * Function returns array of result expected from previous function.
37 *
38 * @return array
39 * API result array
6a488035 40 */
50fb255d 41function pledge_payment_create_expectedresult() {
6a488035 42
53ca8fd7 43 $expectedResult = array(
50fb255d 44 'is_error' => 0,
45 'version' => 3,
46 'count' => 1,
47 'id' => 1,
48 'values' => array(
53ca8fd7 49 '1' => array(
50fb255d 50 'id' => '1',
51 'pledge_id' => '1',
52 'contribution_id' => '1',
53 'scheduled_amount' => '',
54 'actual_amount' => '20',
55 'currency' => 'USD',
56 'scheduled_date' => '',
57 'reminder_date' => '',
58 'reminder_count' => '',
59 'status_id' => '1',
60 ),
6a488035 61 ),
50fb255d 62 );
6a488035 63
fb32de45 64 return $expectedResult;
6a488035
TO
65}
66
50fb255d 67/**
68* This example has been generated from the API test suite.
69* The test that created it is called
70* testCreatePledgePayment
71* and can be found in
69d79249 72* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/PledgePaymentTest.php
6a488035
TO
73*
74* You can see the outcome of the API tests at
69d79249 75* https://test.civicrm.org/job/CiviCRM-master-git/
6a488035
TO
76*
77* To Learn about the API read
69d79249 78* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
6a488035 79*
69d79249 80* Browse the api on your own site with the api explorer
41d4d31f 81* http://MYSITE.ORG/path/to/civicrm/api
6a488035
TO
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
b259a4ab 88*/