Fix for CRM-15729
[civicrm-core.git] / CRM / Contact / Form / Edit / TagsAndGroups.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 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 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
150f50c1 35class CRM_Contact_Form_Edit_TagsAndGroups {
6a488035
TO
36
37 /**
fe482240 38 * Constant to determine which forms we are generating.
6a488035
TO
39 *
40 * Used by both profile and edit contact
41 */
7da04cde 42 const GROUP = 1, TAG = 2, ALL = 3;
6a488035
TO
43
44 /**
fe482240 45 * build form elements.
6a488035
TO
46 * params object $form object of the form
47 *
77c5b619
TO
48 * @param CRM_Core_Form $form
49 * The form object that we are operating on.
50 * @param int $contactId
51 * Contact id.
52 * @param int $type
53 * What components are we interested in.
54 * @param bool $visibility
55 * Visibility of the field.
77b97be7 56 * @param null $isRequired
77c5b619
TO
57 * @param string $groupName
58 * If used for building group block.
59 * @param string $tagName
60 * If used for building tag block.
61 * @param string $fieldName
62 * This is used in batch profile(i.e to build multiple blocks).
77b97be7
EM
63 *
64 * @param string $groupElementType
6a488035 65 *
6a488035 66 */
ae5ffbb7 67 public static function buildQuickForm(
51ccfbbe 68 &$form,
150f50c1
CW
69 $contactId = 0,
70 $type = self::ALL,
6a488035
TO
71 $visibility = FALSE,
72 $isRequired = NULL,
150f50c1
CW
73 $groupName = 'Group(s)',
74 $tagName = 'Tag(s)',
c18f95b7
PJ
75 $fieldName = NULL,
76 $groupElementType = 'checkbox'
6a488035
TO
77 ) {
78 if (!isset($form->_tagGroup)) {
79 $form->_tagGroup = array();
80 }
81
82 // NYSS 5670
83 if (!$contactId && !empty($form->_contactId)) {
84 $contactId = $form->_contactId;
85 }
86
150f50c1
CW
87 $type = (int) $type;
88 if ($type & self::GROUP) {
6a488035
TO
89
90 $fName = 'group';
91 if ($fieldName) {
92 $fName = $fieldName;
93 }
94
6a488035
TO
95 $groupID = isset($form->_grid) ? $form->_grid : NULL;
96 if ($groupID && $visibility) {
f828fa2c 97 $ids = array($groupID => $groupID);
6a488035
TO
98 }
99 else {
100 if ($visibility) {
101 $group = CRM_Core_PseudoConstant::allGroup();
102 }
103 else {
104 $group = CRM_Core_PseudoConstant::group();
105 }
f828fa2c 106 $ids = $group;
6a488035
TO
107 }
108
109 if ($groupID || !empty($group)) {
110 $groups = CRM_Contact_BAO_Group::getGroupsHierarchy($ids);
111
112 $attributes['skiplabel'] = TRUE;
c18f95b7
PJ
113 $elements = array();
114 $groupsOptions = array();
6a488035
TO
115 foreach ($groups as $id => $group) {
116 // make sure that this group has public visibility
117 if ($visibility &&
118 $group['visibility'] == 'User and User Admin Only'
119 ) {
120 continue;
121 }
77b97be7 122
ab345ca5 123 if ($groupElementType == 'select') {
c18f95b7
PJ
124 $groupsOptions[$id] = $group['title'];
125 }
126 else {
127 $form->_tagGroup[$fName][$id]['description'] = $group['description'];
128 $elements[] = &$form->addElement('advcheckbox', $id, NULL, $group['title'], $attributes);
129 }
130 }
131
ab345ca5 132 if ($groupElementType == 'select' && !empty($groupsOptions)) {
c18f95b7 133 $form->add('select', $fName, ts('%1', array(1 => $groupName)), $groupsOptions, FALSE,
ab345ca5 134 array('id' => $fName, 'multiple' => 'multiple', 'class' => 'crm-select2')
c18f95b7
PJ
135 );
136 $form->assign('groupCount', count($groupsOptions));
6a488035
TO
137 }
138
c18f95b7 139 if ($groupElementType == 'checkbox' && !empty($elements)) {
6a488035
TO
140 $form->addGroup($elements, $fName, $groupName, '&nbsp;<br />');
141 $form->assign('groupCount', count($elements));
142 if ($isRequired) {
143 $form->addRule($fName, ts('%1 is a required field.', array(1 => $groupName)), 'required');
144 }
145 }
c18f95b7 146 $form->assign('groupElementType', $groupElementType);
6a488035
TO
147 }
148 }
149
150f50c1 150 if ($type & self::TAG) {
6a488035
TO
151 $fName = 'tag';
152 if ($fieldName) {
153 $fName = $fieldName;
154 }
155 $form->_tagGroup[$fName] = 1;
6dac2504
T
156
157 // get the list of all the categories
158 $tags = new CRM_Core_BAO_Tag();
159 $tree = $tags->getTree('civicrm_contact', TRUE);
d768b780
WA
160 // let's not load jstree if there are not children. This also fixes blank
161 // display at the beginning of checkboxes
162 $form->assign('loadjsTree', FALSE);
163 if (!empty(CRM_Utils_Array::retrieveValueRecursive($tree, 'children'))) {
164 // CODE FROM CRM/Tag/Form/Tag.php //
165 CRM_Core_Resources::singleton()
166 ->addScriptFile('civicrm', 'packages/jquery/plugins/jstree/jquery.jstree.js', 0, 'html-header', FALSE)
167 ->addStyleFile('civicrm', 'packages/jquery/plugins/jstree/themes/default/style.css', 0, 'html-header');
168 $form->assign('loadjsTree', TRUE);
169 }
6dac2504 170
6a488035 171 $elements = array();
6dac2504 172 self::climbtree($form, $tree, $elements);
6a488035 173
6dac2504
T
174 $form->addGroup($elements, $fName, $tagName, '<br />');
175 $form->assign('tagCount', count($elements));
176 $form->assign('tree', $tree);
177 $form->assign('tag', $tree);
178 $form->assign('entityID', $contactId);
179 $form->assign('entityTable', 'civicrm_contact');
6a488035
TO
180
181 if ($isRequired) {
182 $form->addRule($fName, ts('%1 is a required field.', array(1 => $tagName)), 'required');
183 }
184
185 // build tag widget
186 $parentNames = CRM_Core_BAO_Tag::getTagSet('civicrm_contact');
47bc9cec 187 CRM_Core_Form_Tag::buildQuickForm($form, $parentNames, 'civicrm_contact', $contactId, FALSE, TRUE);
6a488035
TO
188 }
189 $form->assign('tagGroup', $form->_tagGroup);
190 }
4a679824 191
2e2605fe
EM
192 /**
193 * Climb tree.
194 *
195 * @param $form
196 * @param $tree
197 * @param $elements
198 *
199 * @return mixed
200 */
00be9182 201 public static function climbtree($form, $tree, &$elements) {
6dac2504
T
202 foreach ($tree as $tagID => $varValue) {
203 $tagAttribute = array(
353ffa53
TO
204 'onclick' => "return changeRowColor(\"rowidtag_$tagID\")",
205 'id' => "tag_{$tagID}",
6dac2504
T
206 );
207
208 $elements[$tagID] = $form->createElement('checkbox', $tagID, '', '', $tagAttribute);
209
210 if (array_key_exists('children', $varValue)) {
211 self::climbtree($form, $varValue['children'], $elements);
212 }
213 }
51ccfbbe 214 return $elements;
6dac2504 215 }
6a488035
TO
216
217 /**
fe482240 218 * Set defaults for relevant form elements.
6a488035 219 *
77c5b619
TO
220 * @param int $id
221 * The contact id.
222 * @param array $defaults
223 * The defaults array to store the values in.
224 * @param int $type
225 * What components are we interested in.
226 * @param string $fieldName
227 * This is used in batch profile(i.e to build multiple blocks).
6a488035 228 *
77b97be7
EM
229 * @param string $groupElementType
230 *
6a488035 231 * @return void
6a488035 232 */
00be9182 233 public static function setDefaults($id, &$defaults, $type = self::ALL, $fieldName = NULL, $groupElementType = 'checkbox') {
6a488035
TO
234 $type = (int ) $type;
235 if ($type & self::GROUP) {
236 $fName = 'group';
237 if ($fieldName) {
238 $fName = $fieldName;
239 }
240
241 $contactGroup = CRM_Contact_BAO_GroupContact::getContactGroup($id, 'Added', NULL, FALSE, TRUE);
242 if ($contactGroup) {
243 foreach ($contactGroup as $group) {
ab345ca5 244 if ($groupElementType == 'select') {
c18f95b7
PJ
245 $defaults[$fName][] = $group['group_id'];
246 }
247 else {
248 $defaults[$fName . '[' . $group['group_id'] . ']'] = 1;
249 }
6a488035
TO
250 }
251 }
252 }
253
254 if ($type & self::TAG) {
255 $fName = 'tag';
256 if ($fieldName) {
257 $fName = $fieldName;
258 }
259
260 $contactTag = CRM_Core_BAO_EntityTag::getTag($id);
261 if ($contactTag) {
262 foreach ($contactTag as $tag) {
263 $defaults[$fName . '[' . $tag . ']'] = 1;
264 }
265 }
266 }
267 }
268
269 /**
c490a46a 270 * Set default values for the form. Note that in edit/view mode
6a488035
TO
271 * the default values are retrieved from the database
272 *
6a488035 273 *
c490a46a 274 * @param CRM_Core_Form $form
77b97be7
EM
275 * @param $defaults
276 *
355ba699 277 * @return void
6a488035
TO
278 */
279 public static function setDefaultValues(&$form, &$defaults) {
280 $contactEditOptions = $form->get('contactEditOptions');
c18f95b7 281
6a488035
TO
282 if ($form->_action & CRM_Core_Action::ADD) {
283 if (array_key_exists('TagsAndGroups', $contactEditOptions)) {
284 // set group and tag defaults if any
285 if ($form->_gid) {
286 $defaults['group'][$form->_gid] = 1;
287 }
288 if ($form->_tid) {
289 $defaults['tag'][$form->_tid] = 1;
290 }
291 }
292 }
293 else {
294 if (array_key_exists('TagsAndGroups', $contactEditOptions)) {
295 // set the group and tag ids
c18f95b7
PJ
296 $groupElementType = 'checkbox';
297 if (CRM_Utils_System::getClassName($form) == 'CRM_Contact_Form_Contact') {
ab345ca5 298 $groupElementType = 'select';
c18f95b7
PJ
299 }
300 self::setDefaults($form->_contactId, $defaults, self::ALL, NULL, $groupElementType);
6a488035
TO
301 }
302 }
303 }
96025800 304
232624b1 305}