3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2013
37 * This class is to build the form for adding Group
39 class CRM_Group_Form_Edit
extends CRM_Core_Form
{
42 * the group id, used when editing a group
49 * the group object, if an id is present
56 * The title of the group being deleted
63 * Store the group values
67 protected $_groupValues;
70 * what blocks should we show and hide.
72 * @var CRM_Core_ShowHideBlocks
77 * the civicrm_group_organization table id
81 protected $_groupOrganizationID;
84 * set up variables to build the form
89 function preProcess() {
90 $this->_id
= $this->get('id');
92 $breadCrumb = array(array('title' => ts('Manage Groups'),
93 'url' => CRM_Utils_System
::url('civicrm/group',
97 CRM_Utils_System
::appendBreadCrumb($breadCrumb);
99 $this->_groupValues
= array();
100 $params = array('id' => $this->_id
);
101 $this->_group
= CRM_Contact_BAO_Group
::retrieve($params, $this->_groupValues
);
102 $this->_title
= $this->_groupValues
['title'];
105 $this->assign('action', $this->_action
);
106 $this->assign('showBlockJS', TRUE);
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'));
116 if (isset($this->_id
)) {
117 $groupValues = array(
119 'title' => $this->_title
,
121 isset($this->_groupValues
['saved_search_id']) ?
122 $this->_groupValues
['saved_search_id'] : '',
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'],
129 $groupValues['search_custom_id'] = CRM_Core_DAO
::getFieldValue('CRM_Contact_DAO_SavedSearch',
130 $this->_groupValues
['saved_search_id'],
134 if (CRM_Utils_Array
::value('created_id', $this->_groupValues
))
135 $groupValues['created_by'] =
136 CRM_Core_DAO
::getFieldValue("CRM_Contact_DAO_Contact", $this->_groupValues
['created_id'] , 'sort_name', 'id');
138 if (CRM_Utils_Array
::value('modified_id', $this->_groupValues
)) {
139 $groupValues['modified_by'] =
140 CRM_Core_DAO
::getFieldValue("CRM_Contact_DAO_Contact", $this->_groupValues
['modified_id'] , 'sort_name', 'id');
143 $this->assign_by_ref('group', $groupValues);
145 CRM_Utils_System
::setTitle(ts('Group Settings: %1', array(1 => $this->_title
)));
147 $session = CRM_Core_Session
::singleton();
148 $session->pushUserContext(CRM_Utils_System
::url('civicrm/group', 'reset=1'));
152 CRM_Custom_Form_CustomData
::preProcess($this, NULL, NULL, 1, 'Group', $this->_id
);
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
162 function setDefaultValues() {
165 if (isset($this->_id
)) {
166 $defaults = $this->_groupValues
;
167 if (CRM_Utils_Array
::value('group_type', $defaults)) {
168 $types = explode(CRM_Core_DAO
::VALUE_SEPARATOR
,
169 substr($defaults['group_type'], 1, -1)
171 $defaults['group_type'] = array();
172 foreach ($types as $type) {
173 $defaults['group_type'][$type] = 1;
177 if (CRM_Core_Permission
::check('administer Multiple Organizations') &&
178 CRM_Core_Permission
::isMultisiteEnabled()
180 CRM_Contact_BAO_GroupOrganization
::retrieve($this->_id
, $defaults);
182 if (CRM_Utils_Array
::value('group_organization', $defaults)) {
184 $this->_groupOrganizationID
= $defaults['group_organization'];
187 $this->assign('organizationID', CRM_Utils_Array
::value('organization_id',$defaults));
191 if (!((CRM_Core_Permission
::check('access CiviMail')) ||
192 (CRM_Mailing_Info
::workflowEnabled() &&
193 CRM_Core_Permission
::check('create mailings')
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']);
201 $this->assign('hideMailignList', $groupTypes['Mailing List']);
205 if (!CRM_Utils_Array
::value('parents', $defaults)) {
206 $defaults['parents'] = CRM_Core_BAO_Domain
::getGroupId();
209 // custom data set defaults
210 $defaults +
= CRM_Custom_Form_CustomData
::setDefaultValues($this);
215 * Function to actually build the form
220 public function buildQuickForm() {
221 if ($this->_action
== CRM_Core_Action
::DELETE
) {
222 $this->addButtons(array(
225 'name' => ts('Delete Group'),
230 'name' => ts('Cancel'),
237 $this->applyFilter('__ALL__', 'trim');
238 $this->add('text', 'title', ts('Name') . ' ',
239 CRM_Core_DAO
::getAttribute('CRM_Contact_DAO_Group', 'title'), TRUE
242 $this->add('textarea', 'description', ts('Description') . ' ',
243 CRM_Core_DAO
::getAttribute('CRM_Contact_DAO_Group', 'description')
246 $groupTypes = CRM_Core_OptionGroup
::values('group_type', TRUE);
247 $config = CRM_Core_Config
::singleton();
248 if (isset($this->_id
) &&
249 CRM_Utils_Array
::value('saved_search_id', $this->_groupValues
)
251 unset($groupTypes['Access Control']);
254 if (!empty($groupTypes)) {
255 $this->addCheckBox('group_type',
258 NULL, NULL, NULL, NULL, ' '
262 $this->add('select', 'visibility', ts('Visibility'),
263 CRM_Core_SelectValues
::ufVisibility(TRUE), TRUE
266 $groupNames = CRM_Core_PseudoConstant
::group();
268 $parentGroups = $parentGroupElements = array();
269 if (isset($this->_id
) &&
270 CRM_Utils_Array
::value('parents', $this->_groupValues
)
272 $parentGroupIds = explode(',', $this->_groupValues
['parents']);
273 foreach ($parentGroupIds as $parentGroupId) {
274 $parentGroups[$parentGroupId] = $groupNames[$parentGroupId];
275 if (array_key_exists($parentGroupId, $groupNames)) {
276 $parentGroupElements[$parentGroupId] = $groupNames[$parentGroupId];
277 $this->addElement('checkbox', "remove_parent_group_$parentGroupId",
278 $groupNames[$parentGroupId]
283 $this->assign_by_ref('parent_groups', $parentGroupElements);
285 if (isset($this->_id
)) {
286 $potentialParentGroupIds = CRM_Contact_BAO_GroupNestingCache
::getPotentialCandidates($this->_id
,
291 $potentialParentGroupIds = array_keys($groupNames);
294 $parentGroupSelectValues = array('' => '- ' . ts('select') . ' -');
295 foreach ($potentialParentGroupIds as $potentialParentGroupId) {
296 if (array_key_exists($potentialParentGroupId, $groupNames)) {
297 $parentGroupSelectValues[$potentialParentGroupId] = $groupNames[$potentialParentGroupId];
301 if (count($parentGroupSelectValues) > 1) {
302 if (CRM_Core_Permission
::isMultisiteEnabled()) {
303 $required = empty($parentGroups) ?
TRUE : FALSE;
304 $required = (($this->_id
&& CRM_Core_BAO_Domain
::isDomainGroup($this->_id
)) ||
306 ) ?
FALSE : $required;
311 $this->add('select', 'parents', ts('Add Parent'), $parentGroupSelectValues, $required);
313 if (CRM_Core_Permission
::check('administer Multiple Organizations') &&
314 CRM_Core_Permission
::isMultisiteEnabled()
316 //group organization Element
317 $groupOrgDataURL = CRM_Utils_System
::url('civicrm/ajax/search', 'org=1', FALSE, NULL, FALSE);
318 $this->assign('groupOrgDataURL', $groupOrgDataURL);
320 $this->addElement('text', 'organization', ts('Organization'), '');
321 $this->addElement('hidden', 'organization_id', '', array('id' => 'organization_id'));
324 // is_reserved property CRM-9936
325 $this->addElement('checkbox', 'is_reserved', ts('Reserved Group?'));
326 if (!CRM_Core_Permission
::check('administer reserved groups')) {
327 $this->freeze('is_reserved');
331 CRM_Custom_Form_CustomData
::buildQuickForm($this);
333 $this->addButtons(array(
337 ($this->_action
== CRM_Core_Action
::ADD
) ?
338 ts('Continue') : ts('Save'),
343 'name' => ts('Cancel'),
348 $doParentCheck = FALSE;
349 if (CRM_Core_Permission
::isMultisiteEnabled()) {
350 $doParentCheck = ($this->_id
&& CRM_Core_BAO_Domain
::isDomainGroup($this->_id
)) ?
FALSE : TRUE;
355 'parentGroups' => $parentGroups,
356 'doParentCheck' => $doParentCheck,
358 $this->addFormRule(array('CRM_Group_Form_Edit', 'formRule'), $options);
362 * global validation rules for the form
364 * @param array $fields posted values of the form
366 * @return array list of errors to be posted back to the form
370 static function formRule($fields, $fileParams, $options) {
373 $doParentCheck = $options['doParentCheck'];
374 $self = &$options['selfObj'];
376 if ($doParentCheck) {
377 $parentGroups = $options['parentGroups'];
380 foreach ($fields as $key => $val) {
381 if (substr($key, 0, 20) == 'remove_parent_group_') {
387 if (CRM_Utils_Array
::value('parents', $fields)) {
391 if ((count($parentGroups) >= 1) && (($grpRemove - $grpAdd) >= count($parentGroups))) {
392 $errors['parents'] = ts('Make sure at least one parent group is set.');
396 // do check for both name and title uniqueness
397 if (CRM_Utils_Array
::value('title', $fields)) {
398 $title = trim($fields['title']);
404 $params = array(1 => array($title, 'String'));
407 $query .= "AND id <> %2";
408 $params[2] = array($self->_id
, 'Integer');
411 $grpCnt = CRM_Core_DAO
::singleValueQuery($query, $params);
413 $errors['title'] = ts('Group \'%1\' already exists.', array(1 => $fields['title']));
417 return empty($errors) ?
TRUE : $errors;
421 * Process the form when submitted
426 public function postProcess() {
427 CRM_Utils_System
::flushCache('CRM_Core_DAO_Group');
429 $updateNestingCache = FALSE;
430 if ($this->_action
& CRM_Core_Action
::DELETE
) {
431 CRM_Contact_BAO_Group
::discard($this->_id
);
432 CRM_Core_Session
::setStatus(ts("The Group '%1' has been deleted.", array(1 => $this->_title
)), ts('Group Deleted'), 'success');
433 $updateNestingCache = TRUE;
436 // store the submitted values in an array
437 $params = $this->controller
->exportValues($this->_name
);
439 $params['is_active'] = CRM_Utils_Array
::value('is_active', $this->_groupValues
, 1);
441 if ($this->_action
& CRM_Core_Action
::UPDATE
) {
442 $params['id'] = $this->_id
;
445 if ($this->_action
& CRM_Core_Action
::UPDATE
&& isset($this->_groupOrganizationID
)) {
446 $params['group_organization'] = $this->_groupOrganizationID
;
449 $params['is_reserved'] = CRM_Utils_Array
::value('is_reserved', $params, FALSE);
451 $customFields = CRM_Core_BAO_CustomField
::getFields('Group');
452 $params['custom'] = CRM_Core_BAO_CustomField
::postProcess($params,
458 $group = CRM_Contact_BAO_Group
::create($params);
461 * Remove any parent groups requested to be removed
464 if (CRM_Utils_Array
::value('parents', $this->_groupValues
)) {
465 $parentGroupIds = explode(',', $this->_groupValues
['parents']);
466 foreach ($parentGroupIds as $parentGroupId) {
467 if (isset($params["remove_parent_group_$parentGroupId"])) {
468 CRM_Contact_BAO_GroupNesting
::remove($parentGroupId, $group->id
);
469 $updateNestingCache = TRUE;
474 CRM_Core_Session
::setStatus(ts('The Group \'%1\' has been saved.', array(1 => $group->title
)), ts('Group Saved'), 'success');
477 * Add context to the session, in case we are adding members to the group
480 if ($this->_action
& CRM_Core_Action
::ADD
) {
481 $this->set('context', 'amtg');
482 $this->set('amtgID', $group->id
);
484 $session = CRM_Core_Session
::singleton();
485 $session->pushUserContext(CRM_Utils_System
::url('civicrm/group/search', 'reset=1&force=1&context=smog&gid=' . $group->id
));
489 // update the nesting cache
490 if ($updateNestingCache) {
491 CRM_Contact_BAO_GroupNestingCache
::update();