Merge remote-tracking branch 'upstream/4.5' into 4.5-master-2015-02-25-11-27-40
[civicrm-core.git] / api / v3 / examples / ContributionSoft / Create.php
CommitLineData
4f53d6f2 1<?php
50fb255d 2/**
a828d7b8 3 * Test Generated example demonstrating the ContributionSoft.create API.
50fb255d 4 *
50fb255d 5 * @return array
6 * API result array
7 */
8function contribution_soft_create_example() {
9 $params = array(
10 'contribution_id' => 6,
11 'contact_id' => 19,
12 'amount' => '10',
13 'currency' => 'USD',
14 'soft_credit_type_id' => 5,
15 );
4f53d6f2 16
50fb255d 17 try{
a828d7b8 18 $result = civicrm_api3('ContributionSoft', 'create', $params);
50fb255d 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;
4f53d6f2 33}
34
fb32de45 35/**
50fb255d 36 * Function returns array of result expected from previous function.
37 *
38 * @return array
39 * API result array
4f53d6f2 40 */
50fb255d 41function contribution_soft_create_expectedresult() {
4f53d6f2 42
edb0d67a 43 $expectedResult = array(
50fb255d 44 'is_error' => 0,
45 'version' => 3,
46 'count' => 1,
47 'id' => 5,
48 'values' => array(
49 '5' => array(
50 'id' => '5',
51 'contribution_id' => '6',
52 'contact_id' => '19',
53 'amount' => '10',
54 'currency' => 'USD',
55 'pcp_id' => '',
56 'pcp_display_in_roll' => '',
57 'pcp_roll_nickname' => '',
58 'pcp_personal_note' => '',
59 'soft_credit_type_id' => '5',
60 ),
4f53d6f2 61 ),
50fb255d 62 );
4f53d6f2 63
fb32de45 64 return $expectedResult;
4f53d6f2 65}
66
a828d7b8 67/*
50fb255d 68* This example has been generated from the API test suite.
a828d7b8
CW
69* The test that created it is called "testCreateContributionSoft"
70* and can be found at:
69d79249 71* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/ContributionSoftTest.php
4f53d6f2 72*
73* You can see the outcome of the API tests at
69d79249 74* https://test.civicrm.org/job/CiviCRM-master-git/
4f53d6f2 75*
76* To Learn about the API read
69d79249 77* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
4f53d6f2 78*
69d79249 79* Browse the api on your own site with the api explorer
41d4d31f 80* http://MYSITE.ORG/path/to/civicrm/api
4f53d6f2 81*
82* Read more about testing here
83* http://wiki.civicrm.org/confluence/display/CRM/Testing
84*
85* API Standards documentation:
86* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
b259a4ab 87*/