infra updated incorrectly set public functions to private on payment classes
[civicrm-core.git] / api / v3 / ContributionSoft.php
CommitLineData
5c065cc0
JL
1<?php
2// $Id$
3
4/*
5 +--------------------------------------------------------------------+
39de6fd5 6 | CiviCRM version 4.6 |
5c065cc0 7 +--------------------------------------------------------------------+
731a0992 8 | Copyright CiviCRM LLC (c) 2004-2014 |
5c065cc0
JL
9 +--------------------------------------------------------------------+
10 | This file is a part of CiviCRM. |
11 | |
12 | CiviCRM is free software; you can copy, modify, and distribute it |
13 | under the terms of the GNU Affero General Public License |
14 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
15 | |
16 | CiviCRM is distributed in the hope that it will be useful, but |
17 | WITHOUT ANY WARRANTY; without even the implied warranty of |
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
19 | See the GNU Affero General Public License for more details. |
20 | |
21 | You should have received a copy of the GNU Affero General Public |
22 | License and the CiviCRM Licensing Exception along |
23 | with this program; if not, contact CiviCRM LLC |
24 | at info[AT]civicrm[DOT]org. If you have questions about the |
25 | GNU Affero General Public License or the licensing of CiviCRM, |
26 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
27 +--------------------------------------------------------------------+
d25dd0ee 28 */
5c065cc0
JL
29
30/**
31 * File for the CiviCRM APIv3 soft credit functions
32 *
33 * @package CiviCRM_APIv3
34 * @subpackage API_ContributionSoft
35 *
731a0992 36 * @copyright CiviCRM LLC (c) 2004-2014
5c065cc0
JL
37 * @version $Id: ContributionSoft.php 2013-05-01 Jon Goldberg $
38 */
39
40/**
41 * Create or Update a Soft Credit
42 *
cf470720
TO
43 * @param array $params
44 * Associative array of property.
5c065cc0
JL
45 * name/value pairs to insert in new 'contribution_soft'
46 *
47 * @example ContributionSoftCreate.php Standard Create Example //FIXME
48 *
bed98343 49 * @return array API result array {@getfields contribution_soft_create}
5c065cc0
JL
50 */
51function civicrm_api3_contribution_soft_create($params) {
52 return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
53}
54
55/**
56 * Adjust Metadata for Create action
57 *
58 * The metadata is used for setting defaults, documentation & validation
cf470720
TO
59 * @param array $params
60 * Array or parameters determined by getfields.
5c065cc0
JL
61 */
62function _civicrm_api3_contribution_soft_create_spec(&$params) {
63 $params['contribution_id']['api.required'] = 1;
64 $params['contact_id']['api.required'] = 1;
65 $params['amount']['api.required'] = 1;
66}
67
68/**
69 * Deletes an existing Soft Credit
70 *
cf470720 71 * @param array $params
5c065cc0
JL
72 *
73 * @example ContributionSoftDelete.php Standard Delete Example
5c065cc0 74 * {@getfields contribution_soft_delete}
5c065cc0
JL
75 */
76function civicrm_api3_contribution_soft_delete($params) {
b5fb8b6f 77 // non standard BAO - we have to write custom code to cope
78 CRM_Contribute_BAO_ContributionSoft::del(array('id' => $params['id']));
79
5c065cc0
JL
80}
81
82/**
83 * Retrieve one or more Soft Credits
84 *
5c065cc0
JL
85 * @example ContributionSoftGet.php Standard Get Example
86 *
bed98343 87 * @param array $params An associative array of name/value pairs.
5c065cc0 88 *
bed98343 89 * @return array api result {@getfields contribution_soft_get}
5c065cc0
JL
90 */
91function civicrm_api3_contribution_soft_get($params) {
92 return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
93}