Merge pull request #5035 from TeNNoX/master
[civicrm-core.git] / api / v3 / examples / ContributionRecur / Get.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 contribution_recur get API.
10 *
11 *
12 * @return array
13 * API result array
14 */
15function contribution_recur_get_example() {
16 $params = array(
17 'amount' => '500',
18 );
6a488035 19
50fb255d 20 try{
21 $result = civicrm_api3('contribution_recur', 'get', $params);
22 }
23 catch (CiviCRM_API3_Exception $e) {
24 // Handle error here.
25 $errorMessage = $e->getMessage();
26 $errorCode = $e->getErrorCode();
27 $errorData = $e->getExtraParams();
28 return array(
29 'error' => $errorMessage,
30 'error_code' => $errorCode,
31 'error_data' => $errorData,
32 );
33 }
34
35 return $result;
6a488035
TO
36}
37
fb32de45 38/**
50fb255d 39 * Function returns array of result expected from previous function.
40 *
41 * @return array
42 * API result array
6a488035 43 */
50fb255d 44function contribution_recur_get_expectedresult() {
6a488035 45
edb0d67a 46 $expectedResult = array(
50fb255d 47 'is_error' => 0,
48 'version' => 3,
49 'count' => 1,
50 'id' => 2,
51 'values' => array(
52 '2' => array(
53 'id' => '2',
54 'contact_id' => '4',
55 'amount' => '500.00',
56 'currency' => 'USD',
57 'frequency_unit' => 'day',
58 'frequency_interval' => '1',
59 'installments' => '12',
60 'start_date' => '2013-07-29 00:00:00',
61 'create_date' => '20120130621222105',
62 'contribution_status_id' => '1',
63 'is_test' => 0,
64 'cycle_day' => '1',
65 'failure_count' => 0,
66 'auto_renew' => 0,
67 'is_email_receipt' => '1',
68 ),
6a488035 69 ),
50fb255d 70 );
6a488035 71
fb32de45 72 return $expectedResult;
6a488035
TO
73}
74
50fb255d 75/**
76* This example has been generated from the API test suite.
77* The test that created it is called
78* testGetContributionRecur
79* and can be found in
69d79249 80* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/ContributionRecurTest.php
6a488035
TO
81*
82* You can see the outcome of the API tests at
69d79249 83* https://test.civicrm.org/job/CiviCRM-master-git/
6a488035
TO
84*
85* To Learn about the API read
69d79249 86* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
6a488035 87*
69d79249
E
88* Browse the api on your own site with the api explorer
89* http://MYSITE.ORG/path/to/civicrm/api/explorer
6a488035
TO
90*
91* Read more about testing here
92* http://wiki.civicrm.org/confluence/display/CRM/Testing
93*
94* API Standards documentation:
95* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
b259a4ab 96*/