Style - Remove @access
[civicrm-core.git] / CRM / Contact / Form / Task / AddToGroup.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
36 /**
37 * This class provides the functionality to group
38 * contacts. This class provides functionality for the actual
39 * addition of contacts to groups.
40 */
41 class CRM_Contact_Form_Task_AddToGroup extends CRM_Contact_Form_Task {
42
43 /**
44 * The context that we are working on
45 *
46 * @var string
47 */
48 protected $_context;
49
50 /**
51 * The groupId retrieved from the GET vars
52 *
53 * @var int
54 */
55 protected $_id;
56
57 /**
58 * The title of the group
59 *
60 * @var string
61 */
62 protected $_title;
63
64 /**
65 * Build all the data structures needed to build the form
66 *
67 * @return void
68 */
69 public function preProcess() {
70 /*
71 * initialize the task and row fields
72 */
73 parent::preProcess();
74
75 $this->_context = $this->get('context');
76 $this->_id = $this->get('amtgID');
77 }
78
79 /**
80 * Build the form object
81 *
82 *
83 * @return void
84 */
85 public function buildQuickForm() {
86
87 //create radio buttons to select existing group or add a new group
88 $options = array(ts('Add Contact To Existing Group'), ts('Create New Group'));
89
90 if (!$this->_id) {
91 $this->addRadio('group_option', ts('Group Options'), $options, array('onclick' => "return showElements();"));
92
93 $this->add('text', 'title', ts('Group Name:') . ' ',
94 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Group', 'title')
95 );
96 $this->addRule('title', ts('Name already exists in Database.'),
97 'objectExists', array('CRM_Contact_DAO_Group', $this->_id, 'title')
98 );
99
100 $this->add('textarea', 'description', ts('Description:') . ' ',
101 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Group', 'description')
102 );
103
104 $groupTypes = CRM_Core_OptionGroup::values('group_type', TRUE);
105 if (!CRM_Core_Permission::access('CiviMail')) {
106 $isWorkFlowEnabled = CRM_Mailing_Info::workflowEnabled();
107 if ($isWorkFlowEnabled &&
108 !CRM_Core_Permission::check('create mailings') &&
109 !CRM_Core_Permission::check('schedule mailings') &&
110 !CRM_Core_Permission::check('approve mailings')
111 ) {
112 unset($groupTypes['Mailing List']);
113 }
114 }
115
116 if (!empty($groupTypes)) {
117 $this->addCheckBox('group_type',
118 ts('Group Type'),
119 $groupTypes,
120 NULL, NULL, NULL, NULL, '&nbsp;&nbsp;&nbsp;'
121 );
122 }
123 }
124
125 // add select for groups
126 $group = array('' => ts('- select group -')) + CRM_Core_PseudoConstant::nestedGroup();
127
128 $groupElement = $this->add('select', 'group_id', ts('Select Group'), $group, FALSE, array('class' => 'crm-select2 huge'));
129
130 $this->_title = $group[$this->_id];
131
132 if ($this->_context === 'amtg') {
133 $groupElement->freeze();
134
135 // also set the group title
136 $groupValues = array('id' => $this->_id, 'title' => $this->_title);
137 $this->assign_by_ref('group', $groupValues);
138 }
139
140 // Set dynamic page title for 'Add Members Group (confirm)'
141 if ($this->_id) {
142 CRM_Utils_System::setTitle(ts('Add Contacts: %1', array(1 => $this->_title)));
143 }
144 else {
145 CRM_Utils_System::setTitle(ts('Add Contacts to A Group'));
146 }
147
148 $this->addDefaultButtons(ts('Add to Group'));
149 }
150
151 /**
152 * Set the default form values
153 *
154 *
155 * @return array the default array reference
156 */
157 public function setDefaultValues() {
158 $defaults = array();
159
160 if ($this->_context === 'amtg') {
161 $defaults['group_id'] = $this->_id;
162 }
163
164 $defaults['group_option'] = 0;
165 return $defaults;
166 }
167
168 /**
169 * Add local and global form rules
170 *
171 *
172 * @return void
173 */
174 public function addRules() {
175 $this->addFormRule(array('CRM_Contact_Form_task_AddToGroup', 'formRule'));
176 }
177
178 /**
179 * Global validation rules for the form
180 *
181 * @param array $params
182 *
183 * @return array list of errors to be posted back to the form
184 * @static
185 */
186 public static function formRule($params) {
187 $errors = array();
188
189 if (!empty($params['group_option']) && empty($params['title'])) {
190 $errors['title'] = "Group Name is a required field";
191 }
192 elseif (empty($params['group_option']) && empty($params['group_id'])) {
193 $errors['group_id'] = "Select Group is a required field.";
194 }
195
196 return empty($errors) ? TRUE : $errors;
197 }
198
199 /**
200 * Process the form after the input has been submitted and validated
201 *
202 *
203 * @return void
204 */
205 public function postProcess() {
206 $params = $this->controller->exportValues();
207 $groupOption = CRM_Utils_Array::value('group_option', $params, NULL);
208 if ($groupOption) {
209 $groupParams = array();
210 $groupParams['title'] = $params['title'];
211 $groupParams['description'] = $params['description'];
212 $groupParams['visibility'] = "User and User Admin Only";
213 if (array_key_exists('group_type', $params) && is_array($params['group_type'])) {
214 $groupParams['group_type'] = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR,
215 array_keys($params['group_type'])
216 ) . CRM_Core_DAO::VALUE_SEPARATOR;
217 }
218 else {
219 $groupParams['group_type'] = '';
220 }
221 $groupParams['is_active'] = 1;
222
223 $createdGroup = CRM_Contact_BAO_Group::create($groupParams);
224 $groupID = $createdGroup->id;
225 $groupName = $groupParams['title'];
226 }
227 else {
228 $groupID = $params['group_id'];
229 $group = CRM_Core_PseudoConstant::group();
230 $groupName = $group[$groupID];
231 }
232
233 list($total, $added, $notAdded) = CRM_Contact_BAO_GroupContact::addContactsToGroup($this->_contactIds, $groupID);
234
235 $status = array(ts('%count contact added to group', array('count' => $added, 'plural' => '%count contacts added to group')));
236 if ($notAdded) {
237 $status[] = ts('%count contact was already in group', array('count' => $notAdded, 'plural' => '%count contacts were already in group'));
238 }
239 $status = '<ul><li>' . implode('</li><li>', $status) . '</li></ul>';
240 CRM_Core_Session::setStatus($status, ts('Added Contact to %1', array(1 => $groupName, 'count' => $added, 'plural' => 'Added Contacts to %1')), 'success', array('expires' => 0));
241
242 if ($this->_context === 'amtg') {
243 CRM_Core_Session::singleton()->pushUserContext(CRM_Utils_System::url('civicrm/group/search', "reset=1&force=1&context=smog&gid=$groupID"));
244 }
245 }
246 }
247