Commit | Line | Data |
---|---|---|
b193994e PN |
1 | <?php |
2 | /* | |
3 | +--------------------------------------------------------------------+ | |
a30c801b | 4 | | Copyright CiviCRM LLC. All rights reserved. | |
b193994e | 5 | | | |
a30c801b TO |
6 | | This work is published under the GNU AGPLv3 license with some | |
7 | | permitted exceptions and without any warranty. For full license | | |
8 | | and copyright information, see https://civicrm.org/licensing | | |
b193994e PN |
9 | +--------------------------------------------------------------------+ |
10 | */ | |
11 | ||
12 | /** | |
13 | * This api exposes CiviCRM FinancialType. | |
14 | * | |
15 | * @package CiviCRM_APIv3 | |
16 | */ | |
17 | ||
18 | /** | |
19 | * Save a Entity Financial Trxn. | |
20 | * | |
21 | * @param array $params | |
22 | * | |
23 | * @return array | |
24 | */ | |
25 | function civicrm_api3_entity_financial_trxn_create($params) { | |
a25b46e9 | 26 | return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'EntityFinancialTrxn'); |
b193994e PN |
27 | } |
28 | ||
29 | /** | |
30 | * Get a Entity Financial Trxn. | |
31 | * | |
32 | * @param array $params | |
33 | * | |
34 | * @return array | |
35 | * Array of retrieved Entity Financial Trxn property values. | |
36 | */ | |
37 | function civicrm_api3_entity_financial_trxn_get($params) { | |
38 | return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params); | |
39 | } | |
40 | ||
41 | /** | |
42 | * Delete a Entity Financial Trxn. | |
43 | * | |
44 | * @param array $params | |
45 | * | |
46 | * @return array | |
47 | * Array of deleted values. | |
48 | */ | |
49 | function civicrm_api3_entity_financial_trxn_delete($params) { | |
50 | return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params); | |
51 | } | |
52 | ||
53 | /** | |
54 | * Adjust Metadata for Create action. | |
55 | * | |
56 | * The metadata is used for setting defaults, documentation & validation. | |
57 | * | |
58 | * @param array $params | |
59 | * Array of parameters determined by getfields. | |
60 | */ | |
61 | function _civicrm_api3_entity_financial_trxn_create_spec(&$params) { | |
62 | $params['entity_table']['api.required'] = 1; | |
63 | $params['entity_id']['api.required'] = 1; | |
64 | $params['financial_trxn_id']['api.required'] = 1; | |
65 | $params['amount']['api.required'] = 1; | |
429a0484 | 66 | } |