Merge pull request #4410 from eileenmcnaughton/CRM-15297
[civicrm-core.git] / api / v3 / examples / ContributionPage / Get.php
CommitLineData
6a488035 1<?php
fb32de45 2/**
3 * Test Generated example of using contribution_page get API
4 * *
6a488035
TO
5 */
6function contribution_page_get_example(){
edb0d67a 7$params = array(
6a488035
TO
8 'amount' => '34567',
9 'currency' => 'NZD',
10 'financial_type_id' => 1,
11);
12
fb32de45 13try{
14 $result = civicrm_api3('contribution_page', 'get', $params);
15}
16catch (CiviCRM_API3_Exception $e) {
17 // handle error here
18 $errorMessage = $e->getMessage();
19 $errorCode = $e->getErrorCode();
20 $errorData = $e->getExtraParams();
21 return array('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData);
22}
6a488035 23
fb32de45 24return $result;
6a488035
TO
25}
26
fb32de45 27/**
6a488035
TO
28 * Function returns array of result expected from previous function
29 */
30function contribution_page_get_expectedresult(){
31
edb0d67a 32 $expectedResult = array(
6a488035
TO
33 'is_error' => 0,
34 'version' => 3,
35 'count' => 1,
89bf81b4 36 'id' => 1,
edb0d67a 37 'values' => array(
89bf81b4 38 '1' => array(
39 'id' => '1',
6a488035
TO
40 'title' => 'Test Contribution Page',
41 'financial_type_id' => '1',
42 'is_credit_card_only' => 0,
43 'is_monetary' => '1',
44 'is_recur' => 0,
45 'is_confirm_enabled' => '1',
46 'is_recur_interval' => 0,
47 'is_recur_installments' => 0,
89bf81b4 48 'is_pay_later' => '1',
6a488035
TO
49 'is_partial_payment' => 0,
50 'is_allow_other_amount' => 0,
51 'goal_amount' => '34567.00',
52 'is_for_organization' => 0,
53 'is_email_receipt' => 0,
89bf81b4 54 'is_active' => '1',
6a488035
TO
55 'amount_block_is_active' => '1',
56 'currency' => 'NZD',
57 'is_share' => '1',
58 ),
59 ),
60);
61
fb32de45 62 return $expectedResult;
6a488035
TO
63}
64
65
66/*
67* This example has been generated from the API test suite. The test that created it is called
68*
69* testGetContributionPageByAmount and can be found in
69d79249 70* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/ContributionPageTest.php
6a488035
TO
71*
72* You can see the outcome of the API tests at
69d79249 73* https://test.civicrm.org/job/CiviCRM-master-git/
6a488035
TO
74*
75* To Learn about the API read
69d79249 76* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
6a488035 77*
69d79249
E
78* Browse the api on your own site with the api explorer
79* http://MYSITE.ORG/path/to/civicrm/api/explorer
6a488035
TO
80*
81* Read more about testing here
82* http://wiki.civicrm.org/confluence/display/CRM/Testing
83*
84* API Standards documentation:
85* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
b259a4ab 86*/