INFRA-132 - Remove @static annotation
[civicrm-core.git] / CRM / Contact / Form / Edit / TagsAndGroups.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35 class CRM_Contact_Form_Edit_TagsAndGroups {
36
37 /**
38 * Constant to determine which forms we are generating
39 *
40 * Used by both profile and edit contact
41 */
42 const GROUP = 1, TAG = 2, ALL = 3;
43
44 /**
45 * build form elements
46 * params object $form object of the form
47 *
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.
56 * @param null $isRequired
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).
63 *
64 * @param string $groupElementType
65 *
66 */
67 static function buildQuickForm(
68 &$form,
69 $contactId = 0,
70 $type = self::ALL,
71 $visibility = FALSE,
72 $isRequired = NULL,
73 $groupName = 'Group(s)',
74 $tagName = 'Tag(s)',
75 $fieldName = NULL,
76 $groupElementType = 'checkbox'
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
87 $type = (int) $type;
88 if ($type & self::GROUP) {
89
90 $fName = 'group';
91 if ($fieldName) {
92 $fName = $fieldName;
93 }
94
95 $groupID = isset($form->_grid) ? $form->_grid : NULL;
96 if ($groupID && $visibility) {
97 $ids = array($groupID => $groupID);
98 }
99 else {
100 if ($visibility) {
101 $group = CRM_Core_PseudoConstant::allGroup();
102 }
103 else {
104 $group = CRM_Core_PseudoConstant::group();
105 }
106 $ids = $group;
107 }
108
109 if ($groupID || !empty($group)) {
110 $groups = CRM_Contact_BAO_Group::getGroupsHierarchy($ids);
111
112 $attributes['skiplabel'] = TRUE;
113 $elements = array();
114 $groupsOptions = array();
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 }
122
123 if ($groupElementType == 'select') {
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
132 if ($groupElementType == 'select' && !empty($groupsOptions)) {
133 $form->add('select', $fName, ts('%1', array(1 => $groupName)), $groupsOptions, FALSE,
134 array('id' => $fName, 'multiple' => 'multiple', 'class' => 'crm-select2')
135 );
136 $form->assign('groupCount', count($groupsOptions));
137 }
138
139 if ($groupElementType == 'checkbox' && !empty($elements)) {
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 }
146 $form->assign('groupElementType', $groupElementType);
147 }
148 }
149
150 if ($type & self::TAG) {
151 // CODE FROM CRM/Tag/Form/Tag.php //
152 CRM_Core_Resources::singleton()
153 ->addScriptFile('civicrm', 'packages/jquery/plugins/jstree/jquery.jstree.js', 0, 'html-header', FALSE)
154 ->addStyleFile('civicrm', 'packages/jquery/plugins/jstree/themes/default/style.css', 0, 'html-header');
155
156 $fName = 'tag';
157 if ($fieldName) {
158 $fName = $fieldName;
159 }
160 $form->_tagGroup[$fName] = 1;
161
162 // get the list of all the categories
163 $tags = new CRM_Core_BAO_Tag();
164 $tree = $tags->getTree('civicrm_contact', TRUE);
165
166 $elements = array();
167 self::climbtree($form, $tree, $elements);
168
169 $form->addGroup($elements, $fName, $tagName, '<br />');
170 $form->assign('tagCount', count($elements));
171 $form->assign('tree', $tree);
172 $form->assign('tag', $tree);
173 $form->assign('entityID', $contactId);
174 $form->assign('entityTable', 'civicrm_contact');
175
176 if ($isRequired) {
177 $form->addRule($fName, ts('%1 is a required field.', array(1 => $tagName)), 'required');
178 }
179
180 // build tag widget
181 $parentNames = CRM_Core_BAO_Tag::getTagSet('civicrm_contact');
182 CRM_Core_Form_Tag::buildQuickForm($form, $parentNames, 'civicrm_contact', $contactId, FALSE, TRUE);
183 }
184 $form->assign('tagGroup', $form->_tagGroup);
185 }
186
187 public static function climbtree($form, $tree, &$elements) {
188 foreach ($tree as $tagID => $varValue) {
189 $tagAttribute = array(
190 'onclick' => "return changeRowColor(\"rowidtag_$tagID\")",
191 'id' => "tag_{$tagID}",
192 );
193
194 $elements[$tagID] = $form->createElement('checkbox', $tagID, '', '', $tagAttribute);
195
196 if (array_key_exists('children', $varValue)) {
197 self::climbtree($form, $varValue['children'], $elements);
198 }
199 }
200 return $elements;
201 }
202
203 /**
204 * Set defaults for relevant form elements
205 *
206 * @param int $id
207 * The contact id.
208 * @param array $defaults
209 * The defaults array to store the values in.
210 * @param int $type
211 * What components are we interested in.
212 * @param string $fieldName
213 * This is used in batch profile(i.e to build multiple blocks).
214 *
215 * @param string $groupElementType
216 *
217 * @return void
218 */
219 public static function setDefaults($id, &$defaults, $type = self::ALL, $fieldName = NULL, $groupElementType = 'checkbox') {
220 $type = (int ) $type;
221 if ($type & self::GROUP) {
222 $fName = 'group';
223 if ($fieldName) {
224 $fName = $fieldName;
225 }
226
227 $contactGroup = CRM_Contact_BAO_GroupContact::getContactGroup($id, 'Added', NULL, FALSE, TRUE);
228 if ($contactGroup) {
229 foreach ($contactGroup as $group) {
230 if ($groupElementType == 'select') {
231 $defaults[$fName][] = $group['group_id'];
232 }
233 else {
234 $defaults[$fName . '[' . $group['group_id'] . ']'] = 1;
235 }
236 }
237 }
238 }
239
240 if ($type & self::TAG) {
241 $fName = 'tag';
242 if ($fieldName) {
243 $fName = $fieldName;
244 }
245
246 $contactTag = CRM_Core_BAO_EntityTag::getTag($id);
247 if ($contactTag) {
248 foreach ($contactTag as $tag) {
249 $defaults[$fName . '[' . $tag . ']'] = 1;
250 }
251 }
252 }
253 }
254
255 /**
256 * Set default values for the form. Note that in edit/view mode
257 * the default values are retrieved from the database
258 *
259 *
260 * @param CRM_Core_Form $form
261 * @param $defaults
262 *
263 * @return void
264 */
265 public static function setDefaultValues(&$form, &$defaults) {
266 $contactEditOptions = $form->get('contactEditOptions');
267
268 if ($form->_action & CRM_Core_Action::ADD) {
269 if (array_key_exists('TagsAndGroups', $contactEditOptions)) {
270 // set group and tag defaults if any
271 if ($form->_gid) {
272 $defaults['group'][$form->_gid] = 1;
273 }
274 if ($form->_tid) {
275 $defaults['tag'][$form->_tid] = 1;
276 }
277 }
278 }
279 else {
280 if (array_key_exists('TagsAndGroups', $contactEditOptions)) {
281 // set the group and tag ids
282 $groupElementType = 'checkbox';
283 if (CRM_Utils_System::getClassName($form) == 'CRM_Contact_Form_Contact') {
284 $groupElementType = 'select';
285 }
286 self::setDefaults($form->_contactId, $defaults, self::ALL, NULL, $groupElementType);
287 }
288 }
289 }
290 }