CRM-15988 - Update generated examples
[civicrm-core.git] / api / v3 / examples / Grant / Create.php
CommitLineData
6a488035 1<?php
50fb255d 2/**
a828d7b8 3 * Test Generated example demonstrating the Grant.create API.
50fb255d 4 *
50fb255d 5 * @return array
6 * API result array
7 */
8function grant_create_example() {
9 $params = array(
10 'contact_id' => 3,
11 'application_received_date' => 'now',
12 'decision_date' => 'next Monday',
13 'amount_total' => '500',
14 'status_id' => 1,
15 'rationale' => 'Just Because',
16 'currency' => 'USD',
17 'grant_type_id' => 1,
18 );
6a488035 19
50fb255d 20 try{
a828d7b8 21 $result = civicrm_api3('Grant', 'create', $params);
50fb255d 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 grant_create_expectedresult() {
6a488035 45
53ca8fd7 46 $expectedResult = array(
50fb255d 47 'is_error' => 0,
48 'version' => 3,
49 'count' => 1,
50 'id' => 1,
51 'values' => array(
53ca8fd7 52 '1' => array(
50fb255d 53 'id' => '1',
54 'contact_id' => '3',
55 'application_received_date' => '20130728084957',
56 'decision_date' => '20130805000000',
57 'money_transfer_date' => '',
58 'grant_due_date' => '',
59 'grant_report_received' => '',
60 'grant_type_id' => '1',
61 'amount_total' => '500',
62 'amount_requested' => '',
63 'amount_granted' => '',
64 'currency' => 'USD',
65 'rationale' => 'Just Because',
66 'status_id' => '1',
67 'financial_type_id' => '',
68 ),
6a488035 69 ),
50fb255d 70 );
6a488035 71
fb32de45 72 return $expectedResult;
6a488035
TO
73}
74
a828d7b8 75/*
50fb255d 76* This example has been generated from the API test suite.
a828d7b8
CW
77* The test that created it is called "testCreateGrant"
78* and can be found at:
69d79249 79* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/GrantTest.php
6a488035
TO
80*
81* You can see the outcome of the API tests at
69d79249 82* https://test.civicrm.org/job/CiviCRM-master-git/
6a488035
TO
83*
84* To Learn about the API read
69d79249 85* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
6a488035 86*
69d79249 87* Browse the api on your own site with the api explorer
41d4d31f 88* http://MYSITE.ORG/path/to/civicrm/api
6a488035
TO
89*
90* Read more about testing here
91* http://wiki.civicrm.org/confluence/display/CRM/Testing
92*
93* API Standards documentation:
94* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
b259a4ab 95*/