Update to latest versions of polyfill-ctype and polyfill-iconv
[civicrm-core.git] / api / v3 / PriceSet.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28
29/**
244bbdd8
CW
30 * This api exposes CiviCRM Price Sets.
31 *
32 * PriceSets contain PriceFields (which have their own api).
33 * Use chaining to create a PriceSet and associated PriceFields in one api call.
6a488035
TO
34 *
35 * @package CiviCRM_APIv3
6a488035
TO
36 */
37
38/**
244bbdd8 39 * Create or update a PriceSet.
6a488035 40 *
cf470720 41 * @param array $params
244bbdd8 42 * name/value pairs to insert in new 'PriceSet'
6a488035 43 *
a6c01b45 44 * @return array
72b3a70c 45 * api result array
6a488035
TO
46 */
47function civicrm_api3_price_set_create($params) {
98fd592b 48 $result = _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'PriceSet');
6a488035
TO
49 // Handle price_set_entity
50 if (!empty($result['id']) && !empty($params['entity_table']) && !empty($params['entity_id'])) {
51 $entityId = $params['entity_id'];
52 if (!is_array($params['entity_id'])) {
53 $entityId = explode(',', $entityId);
54 }
55 foreach ($entityId as $eid) {
56 $eid = (int) trim($eid);
57 if ($eid) {
9da8dc8c 58 CRM_Price_BAO_PriceSet::addTo($params['entity_table'], $eid, $result['id']);
6a488035
TO
59 }
60 }
61 }
62 return $result;
63}
64
11e09c59 65/**
0aa0303c
EM
66 * Adjust Metadata for Create action.
67 *
68 * The metadata is used for setting defaults, documentation & validation.
6a488035 69 *
cf470720 70 * @param array $params
b081365f 71 * Array of parameters determined by getfields.
6a488035
TO
72 */
73function _civicrm_api3_price_set_create_spec(&$params) {
e0c1764e 74 $params['title']['api.required'] = TRUE;
6a488035
TO
75}
76
77/**
22242c87 78 * Returns array of price_sets matching a set of one or more group properties.
6a488035 79 *
cf470720
TO
80 * @param array $params
81 * Array of one or more valid property_name=>value pairs. If $params is set.
16b10e64 82 * as null, all price_sets will be returned (default limit is 25)
6a488035 83 *
a6c01b45 84 * @return array
72b3a70c 85 * Array of matching price_sets
6a488035
TO
86 */
87function civicrm_api3_price_set_get($params) {
418e884f 88 // hack to make getcount work. - not sure the best approach here
89 // as creating an alternate getcount function also feels a bit hacky
22e263ad 90 if (isset($params['options']) && isset($params['options']['is_count'])) {
418e884f 91 return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
92 }
6a488035 93 $result = _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, FALSE);
8268052f 94 // Fetch associated entities if the return has not been previously limited.
95 if (!isset($params['return'])) {
96 foreach ($result as &$item) {
97 $item['entity'] = CRM_Price_BAO_PriceSet::getUsedBy($item['id'], 'entity');
98 }
6a488035
TO
99 }
100 return civicrm_api3_create_success($result, $params);
101}
102
103/**
244bbdd8 104 * Delete an existing PriceSet.
6a488035 105 *
244bbdd8 106 * This method is used to delete any existing PriceSet given its id.
6a488035 107 *
cf470720 108 * @param array $params
b081365f 109 * Array containing id of the group to be deleted.
6a488035 110 *
a6c01b45 111 * @return array
72b3a70c 112 * API result array
6a488035
TO
113 */
114function civicrm_api3_price_set_delete($params) {
115 return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
116}