Merge branch 4.5 into master
[civicrm-core.git] / api / v3 / CustomGroup.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
731a0992 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 * File for the CiviCRM APIv3 custom group functions
30 *
31 * @package CiviCRM_APIv3
32 * @subpackage API_CustomGroup
33 *
731a0992 34 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
35 * @version $Id: CustomGroup.php 30879 2010-11-22 15:45:55Z shot $
36 */
37
6a488035 38/**
9d32e6f7
EM
39 * Use this API to create a new group.
40 *
41 * The 'extends' value accepts an array or a comma separated string.
6a488035 42 * e.g array(
d1b0d05e 43 * 'Individual','Contact') or 'Individual,Contact'
6a488035
TO
44 * See the CRM Data Model for custom_group property definitions
45 * $params['class_name'] is a required field, class being extended.
46 *
16b10e64 47 * @param array $params
2e66abf8 48 * Array per getfields metadata.
6a488035 49 *
72b3a70c 50 * @return array
6a488035 51 * @todo $params['extends'] is array format - is that std compatible
6a488035
TO
52 */
53function civicrm_api3_custom_group_create($params) {
882e0216 54 if (isset($params['extends']) && is_string($params['extends'])) {
6a488035
TO
55 $extends = explode(",", $params['extends']);
56 unset($params['extends']);
57 $params['extends'] = $extends;
58 }
59 if (!isset($params['extends'][0]) || !trim($params['extends'][0])) {
60 return civicrm_api3_create_error("First item in params['extends'] must be a class name (e.g. 'Contact').");
61 }
62 if (isset($params['extends_entity_column_value']) && !is_array($params['extends_entity_column_value'])) {
63 // BAO fails if this is a string, but API getFields says this must be a string, so we'll do a double backflip
64 $params['extends_entity_column_value'] = CRM_Utils_Array::explodePadded($params['extends_entity_column_value']);
65 }
66
ea12ce50 67 return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
6a488035
TO
68}
69
11e09c59 70/**
0aa0303c 71 * Adjust Metadata for Create action.
6a488035 72 *
cf470720
TO
73 * @param array $params
74 * Array or parameters determined by getfields.
6a488035
TO
75 */
76function _civicrm_api3_custom_group_create_spec(&$params) {
77 $params['extends']['api.required'] = 1;
78 $params['title']['api.required'] = 1;
79 $params['style']['api.default'] = 'Inline';
46b88fe1 80 $params['is_active']['api.default'] = 1;
6a488035
TO
81}
82
83/**
84 * Use this API to delete an existing group.
85 *
decce855 86 * @param array $params
6a488035 87 *
decce855 88 * @return array
c23f45d3 89 */
6a488035 90function civicrm_api3_custom_group_delete($params) {
6a488035
TO
91 $values = new CRM_Core_DAO_CustomGroup();
92 $values->id = $params['id'];
93 $values->find(TRUE);
94
6a488035
TO
95 $result = CRM_Core_BAO_CustomGroup::deleteGroup($values, TRUE);
96 return $result ? civicrm_api3_create_success() : civicrm_api3_create_error('Error while deleting custom group');
97}
98
99/**
2e66abf8 100 * API to get existing custom fields.
6a488035 101 *
cf470720 102 * @param array $params
2e66abf8 103 * Array per getfields metadata.
6a488035 104 *
77b97be7 105 * @return array
ae5ffbb7 106 */
6a488035
TO
107function civicrm_api3_custom_group_get($params) {
108 return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
109}
110
5322ae12 111/**
9d32e6f7
EM
112 * CRM-15191 - Hack to ensure the cache gets cleared after updating a custom group.
113 *
d0997921 114 * @param array $params
2e66abf8 115 * Array per getfields metadata.
9d32e6f7 116 *
645ee340 117 * @return array
5322ae12
CW
118 */
119function civicrm_api3_custom_group_setvalue($params) {
120 require_once 'api/v3/Generic/Setvalue.php';
121 $result = civicrm_api3_generic_setValue(array("entity" => 'custom_group', 'params' => $params));
122 if (empty($result['is_error'])) {
123 CRM_Utils_System::flushCache();
124 }
125 return $result;
126}