Sharpen logo image
[civicrm-core.git] / CRM / Group / Form / Edit.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35
36/**
37 * This class is to build the form for adding Group
38 */
39class CRM_Group_Form_Edit extends CRM_Core_Form {
40
41 /**
42 * the group id, used when editing a group
43 *
44 * @var int
45 */
46 protected $_id;
47
48 /**
49 * the group object, if an id is present
50 *
51 * @var object
52 */
53 protected $_group;
54
55 /**
56 * The title of the group being deleted
57 *
58 * @var string
59 */
60 protected $_title;
61
62 /**
63 * Store the group values
64 *
65 * @var array
66 */
67 protected $_groupValues;
68
69 /**
70 * what blocks should we show and hide.
71 *
72 * @var CRM_Core_ShowHideBlocks
73 */
74 protected $_showHide;
75
76 /**
77 * the civicrm_group_organization table id
78 *
79 * @var int
80 */
81 protected $_groupOrganizationID;
82
83 /**
84 * set up variables to build the form
85 *
86 * @return void
87 * @acess protected
88 */
89 function preProcess() {
90 $this->_id = $this->get('id');
6a488035
TO
91 if ($this->_id) {
92 $breadCrumb = array(array('title' => ts('Manage Groups'),
93 'url' => CRM_Utils_System::url('civicrm/group',
94 'reset=1'
95 ),
96 ));
97 CRM_Utils_System::appendBreadCrumb($breadCrumb);
98
99 $this->_groupValues = array();
100 $params = array('id' => $this->_id);
f828fa2c 101 $this->_group = CRM_Contact_BAO_Group::retrieve($params, $this->_groupValues);
6a488035
TO
102 $this->_title = $this->_groupValues['title'];
103 }
104
105 $this->assign('action', $this->_action);
106 $this->assign('showBlockJS', TRUE);
107
108 if ($this->_action == CRM_Core_Action::DELETE) {
109 if (isset($this->_id)) {
110 $this->assign('title', $this->_title);
111 $this->assign('count', CRM_Contact_BAO_Group::memberCount($this->_id));
112 CRM_Utils_System::setTitle(ts('Confirm Group Delete'));
113 }
114 }
115 else {
116 if (isset($this->_id)) {
117 $groupValues = array(
118 'id' => $this->_id,
119 'title' => $this->_title,
120 'saved_search_id' =>
121 isset($this->_groupValues['saved_search_id']) ?
122 $this->_groupValues['saved_search_id'] : '',
123 );
124 if (isset($this->_groupValues['saved_search_id'])) {
125 $groupValues['mapping_id'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_SavedSearch',
126 $this->_groupValues['saved_search_id'],
127 'mapping_id'
128 );
129 $groupValues['search_custom_id'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_SavedSearch',
130 $this->_groupValues['saved_search_id'],
131 'search_custom_id'
132 );
133 }
a7488080 134 if (!empty($this->_groupValues['created_id']))
f828fa2c 135 $groupValues['created_by'] =
6a488035
TO
136 CRM_Core_DAO::getFieldValue("CRM_Contact_DAO_Contact", $this->_groupValues['created_id'] , 'sort_name', 'id');
137
a7488080 138 if (!empty($this->_groupValues['modified_id'])) {
d0dfb649
PJ
139 $groupValues['modified_by'] =
140 CRM_Core_DAO::getFieldValue("CRM_Contact_DAO_Contact", $this->_groupValues['modified_id'] , 'sort_name', 'id');
141 }
142
6a488035
TO
143 $this->assign_by_ref('group', $groupValues);
144
145 CRM_Utils_System::setTitle(ts('Group Settings: %1', array(1 => $this->_title)));
146 }
147 $session = CRM_Core_Session::singleton();
148 $session->pushUserContext(CRM_Utils_System::url('civicrm/group', 'reset=1'));
149 }
150
151 //build custom data
152 CRM_Custom_Form_CustomData::preProcess($this, NULL, NULL, 1, 'Group', $this->_id);
153 }
154
155 /*
156 * This function sets the default values for the form. LocationType that in edit/view mode
157 * the default values are retrieved from the database
158 *
159 * @access public
355ba699 160 * @return void
6a488035
TO
161 */
162 function setDefaultValues() {
163 $defaults = array();
164
165 if (isset($this->_id)) {
166 $defaults = $this->_groupValues;
a7488080 167 if (!empty($defaults['group_type'])) {
6a488035
TO
168 $types = explode(CRM_Core_DAO::VALUE_SEPARATOR,
169 substr($defaults['group_type'], 1, -1)
170 );
171 $defaults['group_type'] = array();
172 foreach ($types as $type) {
173 $defaults['group_type'][$type] = 1;
174 }
175 }
176
177 if (CRM_Core_Permission::check('administer Multiple Organizations') &&
178 CRM_Core_Permission::isMultisiteEnabled()
179 ) {
180 CRM_Contact_BAO_GroupOrganization::retrieve($this->_id, $defaults);
181
a7488080 182 if (!empty($defaults['group_organization'])) {
6a488035
TO
183 //used in edit mode
184 $this->_groupOrganizationID = $defaults['group_organization'];
185 }
186
187 $this->assign('organizationID', CRM_Utils_Array::value('organization_id',$defaults));
188 }
189 }
190
191 if (!((CRM_Core_Permission::check('access CiviMail')) ||
192 (CRM_Mailing_Info::workflowEnabled() &&
193 CRM_Core_Permission::check('create mailings')
194 )
195 )) {
196 $groupTypes = CRM_Core_OptionGroup::values('group_type', TRUE);
197 if ($defaults['group_type'][$groupTypes['Mailing List']] == 1) {
198 $this->assign('freezeMailignList', $groupTypes['Mailing List']);
199 }
200 else {
201 $this->assign('hideMailignList', $groupTypes['Mailing List']);
202 }
203 }
204
a7488080 205 if (empty($defaults['parents'])) {
6a488035
TO
206 $defaults['parents'] = CRM_Core_BAO_Domain::getGroupId();
207 }
208
209 // custom data set defaults
210 $defaults += CRM_Custom_Form_CustomData::setDefaultValues($this);
211 return $defaults;
212 }
213
214 /**
215 * Function to actually build the form
216 *
355ba699 217 * @return void
6a488035
TO
218 * @access public
219 */
220 public function buildQuickForm() {
221 if ($this->_action == CRM_Core_Action::DELETE) {
222 $this->addButtons(array(
223 array(
224 'type' => 'next',
225 'name' => ts('Delete Group'),
226 'isDefault' => TRUE,
227 ),
228 array(
229 'type' => 'cancel',
230 'name' => ts('Cancel'),
231 ),
232 )
233 );
234 return;
235 }
236
237 $this->applyFilter('__ALL__', 'trim');
238 $this->add('text', 'title', ts('Name') . ' ',
239 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Group', 'title'), TRUE
240 );
241
242 $this->add('textarea', 'description', ts('Description') . ' ',
243 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Group', 'description')
244 );
245
246 $groupTypes = CRM_Core_OptionGroup::values('group_type', TRUE);
247 $config = CRM_Core_Config::singleton();
8cc574cf 248 if (isset($this->_id) && !empty($this->_groupValues['saved_search_id'])) {
6a488035
TO
249 unset($groupTypes['Access Control']);
250 }
251
252 if (!empty($groupTypes)) {
253 $this->addCheckBox('group_type',
254 ts('Group Type'),
255 $groupTypes,
256 NULL, NULL, NULL, NULL, '&nbsp;&nbsp;&nbsp;'
257 );
258 }
259
260 $this->add('select', 'visibility', ts('Visibility'),
261 CRM_Core_SelectValues::ufVisibility(TRUE), TRUE
262 );
263
264 $groupNames = CRM_Core_PseudoConstant::group();
265
266 $parentGroups = $parentGroupElements = array();
8cc574cf 267 if (isset($this->_id) && !empty($this->_groupValues['parents'])) {
6a488035
TO
268 $parentGroupIds = explode(',', $this->_groupValues['parents']);
269 foreach ($parentGroupIds as $parentGroupId) {
270 $parentGroups[$parentGroupId] = $groupNames[$parentGroupId];
271 if (array_key_exists($parentGroupId, $groupNames)) {
272 $parentGroupElements[$parentGroupId] = $groupNames[$parentGroupId];
273 $this->addElement('checkbox', "remove_parent_group_$parentGroupId",
274 $groupNames[$parentGroupId]
275 );
276 }
277 }
278 }
279 $this->assign_by_ref('parent_groups', $parentGroupElements);
280
281 if (isset($this->_id)) {
282 $potentialParentGroupIds = CRM_Contact_BAO_GroupNestingCache::getPotentialCandidates($this->_id,
283 $groupNames
284 );
285 }
286 else {
287 $potentialParentGroupIds = array_keys($groupNames);
288 }
289
290 $parentGroupSelectValues = array('' => '- ' . ts('select') . ' -');
291 foreach ($potentialParentGroupIds as $potentialParentGroupId) {
292 if (array_key_exists($potentialParentGroupId, $groupNames)) {
293 $parentGroupSelectValues[$potentialParentGroupId] = $groupNames[$potentialParentGroupId];
294 }
295 }
296
297 if (count($parentGroupSelectValues) > 1) {
298 if (CRM_Core_Permission::isMultisiteEnabled()) {
299 $required = empty($parentGroups) ? TRUE : FALSE;
300 $required = (($this->_id && CRM_Core_BAO_Domain::isDomainGroup($this->_id)) ||
301 !isset($this->_id)
302 ) ? FALSE : $required;
303 }
304 else {
305 $required = FALSE;
306 }
307 $this->add('select', 'parents', ts('Add Parent'), $parentGroupSelectValues, $required);
308 }
309 if (CRM_Core_Permission::check('administer Multiple Organizations') &&
310 CRM_Core_Permission::isMultisiteEnabled()
311 ) {
312 //group organization Element
313 $groupOrgDataURL = CRM_Utils_System::url('civicrm/ajax/search', 'org=1', FALSE, NULL, FALSE);
314 $this->assign('groupOrgDataURL', $groupOrgDataURL);
315
316 $this->addElement('text', 'organization', ts('Organization'), '');
317 $this->addElement('hidden', 'organization_id', '', array('id' => 'organization_id'));
318 }
319
320 // is_reserved property CRM-9936
321 $this->addElement('checkbox', 'is_reserved', ts('Reserved Group?'));
322 if (!CRM_Core_Permission::check('administer reserved groups')) {
323 $this->freeze('is_reserved');
324 }
325
326 //build custom data
327 CRM_Custom_Form_CustomData::buildQuickForm($this);
328
329 $this->addButtons(array(
330 array(
331 'type' => 'upload',
332 'name' =>
333 ($this->_action == CRM_Core_Action::ADD) ?
334 ts('Continue') : ts('Save'),
335 'isDefault' => TRUE,
336 ),
337 array(
338 'type' => 'cancel',
339 'name' => ts('Cancel'),
340 ),
341 )
342 );
343
344 $doParentCheck = FALSE;
345 if (CRM_Core_Permission::isMultisiteEnabled()) {
346 $doParentCheck = ($this->_id && CRM_Core_BAO_Domain::isDomainGroup($this->_id)) ? FALSE : TRUE;
347 }
348
349 $options = array(
350 'selfObj' => $this,
351 'parentGroups' => $parentGroups,
352 'doParentCheck' => $doParentCheck,
353 );
354 $this->addFormRule(array('CRM_Group_Form_Edit', 'formRule'), $options);
355 }
356
357 /**
358 * global validation rules for the form
359 *
360 * @param array $fields posted values of the form
361 *
362 * @return array list of errors to be posted back to the form
363 * @static
364 * @access public
365 */
366 static function formRule($fields, $fileParams, $options) {
367 $errors = array();
368
369 $doParentCheck = $options['doParentCheck'];
370 $self = &$options['selfObj'];
371
372 if ($doParentCheck) {
373 $parentGroups = $options['parentGroups'];
374
375 $grpRemove = 0;
376 foreach ($fields as $key => $val) {
377 if (substr($key, 0, 20) == 'remove_parent_group_') {
378 $grpRemove++;
379 }
380 }
381
382 $grpAdd = 0;
a7488080 383 if (!empty($fields['parents'])) {
6a488035
TO
384 $grpAdd++;
385 }
386
387 if ((count($parentGroups) >= 1) && (($grpRemove - $grpAdd) >= count($parentGroups))) {
388 $errors['parents'] = ts('Make sure at least one parent group is set.');
389 }
390 }
391
392 // do check for both name and title uniqueness
a7488080 393 if (!empty($fields['title'])) {
6a488035
TO
394 $title = trim($fields['title']);
395 $query = "
396SELECT count(*)
397FROM civicrm_group
398WHERE title = %1
399";
400 $params = array(1 => array($title, 'String'));
401
402 if ($self->_id) {
403 $query .= "AND id <> %2";
404 $params[2] = array($self->_id, 'Integer');
405 }
406
407 $grpCnt = CRM_Core_DAO::singleValueQuery($query, $params);
408 if ($grpCnt) {
409 $errors['title'] = ts('Group \'%1\' already exists.', array(1 => $fields['title']));
410 }
411 }
412
413 return empty($errors) ? TRUE : $errors;
414 }
415
416 /**
417 * Process the form when submitted
418 *
419 * @return void
420 * @access public
421 */
422 public function postProcess() {
423 CRM_Utils_System::flushCache('CRM_Core_DAO_Group');
424
425 $updateNestingCache = FALSE;
426 if ($this->_action & CRM_Core_Action::DELETE) {
427 CRM_Contact_BAO_Group::discard($this->_id);
428 CRM_Core_Session::setStatus(ts("The Group '%1' has been deleted.", array(1 => $this->_title)), ts('Group Deleted'), 'success');
429 $updateNestingCache = TRUE;
430 }
431 else {
432 // store the submitted values in an array
433 $params = $this->controller->exportValues($this->_name);
434
435 $params['is_active'] = CRM_Utils_Array::value('is_active', $this->_groupValues, 1);
436
437 if ($this->_action & CRM_Core_Action::UPDATE) {
438 $params['id'] = $this->_id;
439 }
440
441 if ($this->_action & CRM_Core_Action::UPDATE && isset($this->_groupOrganizationID)) {
442 $params['group_organization'] = $this->_groupOrganizationID;
443 }
444
445 $params['is_reserved'] = CRM_Utils_Array::value('is_reserved', $params, FALSE);
446
447 $customFields = CRM_Core_BAO_CustomField::getFields('Group');
448 $params['custom'] = CRM_Core_BAO_CustomField::postProcess($params,
449 $customFields,
450 $this->_id,
451 'Group'
452 );
453
454 $group = CRM_Contact_BAO_Group::create($params);
455
456 /*
457 * Remove any parent groups requested to be removed
458 */
459
a7488080 460 if (!empty($this->_groupValues['parents'])) {
6a488035
TO
461 $parentGroupIds = explode(',', $this->_groupValues['parents']);
462 foreach ($parentGroupIds as $parentGroupId) {
463 if (isset($params["remove_parent_group_$parentGroupId"])) {
464 CRM_Contact_BAO_GroupNesting::remove($parentGroupId, $group->id);
465 $updateNestingCache = TRUE;
466 }
467 }
468 }
469
470 CRM_Core_Session::setStatus(ts('The Group \'%1\' has been saved.', array(1 => $group->title)), ts('Group Saved'), 'success');
471
472 /*
473 * Add context to the session, in case we are adding members to the group
474 */
475
476 if ($this->_action & CRM_Core_Action::ADD) {
477 $this->set('context', 'amtg');
478 $this->set('amtgID', $group->id);
479
480 $session = CRM_Core_Session::singleton();
481 $session->pushUserContext(CRM_Utils_System::url('civicrm/group/search', 'reset=1&force=1&context=smog&gid=' . $group->id));
482 }
483 }
484
485 // update the nesting cache
486 if ($updateNestingCache) {
487 CRM_Contact_BAO_GroupNestingCache::update();
488 }
489 }
490}
491