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