Merge pull request #11709 from totten/master-extget
[civicrm-core.git] / CRM / UF / Form / Group.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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-2017
32 * $Id$
33 *
34 */
35
36 /**
37 * This class is for UF Group
38 */
39 class CRM_UF_Form_Group extends CRM_Core_Form {
40
41 /**
42 * The form id saved to the session for an update.
43 *
44 * @var int
45 */
46 protected $_id;
47
48 /**
49 * The title for group.
50 *
51 * @var int
52 */
53 protected $_title;
54 protected $_groupElement;
55 protected $_group;
56 protected $_allPanes;
57
58 /**
59 * Set variables up before form is built.
60 *
61 * @return void
62 */
63 public function preProcess() {
64 // current form id
65 $this->_id = $this->get('id');
66 if (!$this->_id) {
67 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this, FALSE, 0);
68 }
69 $this->assign('gid', $this->_id);
70 $this->_group = CRM_Core_PseudoConstant::group();
71
72 if ($this->_action & (CRM_Core_Action::UPDATE | CRM_Core_Action::DELETE)) {
73 $title = CRM_Core_BAO_UFGroup::getTitle($this->_id);
74 $this->assign('profileTitle', $title);
75 }
76
77 // setting title for html page
78 if ($this->_action & CRM_Core_Action::UPDATE) {
79 CRM_Utils_System::setTitle(ts('Profile Settings') . " - $title");
80 }
81 elseif ($this->_action & (CRM_Core_Action::DISABLE | CRM_Core_Action::DELETE)) {
82 $ufGroup['module'] = implode(' , ', CRM_Core_BAO_UFGroup::getUFJoinRecord($this->_id, TRUE));
83 $status = 0;
84 $status = CRM_Core_BAO_UFGroup::usedByModule($this->_id);
85 if ($this->_action & (CRM_Core_Action::DISABLE)) {
86 if ($status) {
87 $message = 'This profile is currently used for ' . $ufGroup['module'] . '. If you disable the profile - it will be removed from these forms and/or modules. Do you want to continue?';
88 }
89 else {
90 $message = 'Are you sure you want to disable this Profile?';
91 }
92 }
93 else {
94 if ($status) {
95 $message = 'This profile is currently used for ' . $ufGroup['module'] . '. If you delete the profile - it will be removed from these forms and/or modules. This action cannot be undone. Do you want to continue?';
96 }
97 else {
98 $message = 'Are you sure you want to delete this Profile? This action cannot be undone.';
99 }
100 }
101 $this->assign('message', $message);
102 }
103 else {
104 CRM_Utils_System::setTitle(ts('New CiviCRM Profile'));
105 }
106 }
107
108 /**
109 * Build the form object.
110 *
111 * @return void
112 */
113 public function buildQuickForm() {
114 if ($this->_action & (CRM_Core_Action::DISABLE | CRM_Core_Action::DELETE)) {
115 if ($this->_action & (CRM_Core_Action::DISABLE)) {
116 $display = 'Disable Profile';
117 }
118 else {
119 $display = 'Delete Profile';
120 }
121 $this->addButtons(array(
122 array(
123 'type' => 'next',
124 'name' => $display,
125 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
126 'isDefault' => TRUE,
127 ),
128 array(
129 'type' => 'cancel',
130 'name' => ts('Cancel'),
131 ),
132 ));
133 return;
134 }
135 $this->applyFilter('__ALL__', 'trim');
136
137 // title
138 $this->add('text', 'title', ts('Profile Name'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_UFGroup', 'title'), TRUE);
139 $this->add('text', 'frontend_title', ts('Public Title'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_UFGroup', 'frontend_title'));
140 $this->add('textarea', 'description', ts('Description'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_UFGroup', 'description'));
141
142 //add checkboxes
143 $uf_group_type = array();
144 $UFGroupType = CRM_Core_SelectValues::ufGroupTypes();
145 foreach ($UFGroupType as $key => $value) {
146 $uf_group_type[] = $this->createElement('checkbox', $key, NULL, $value);
147 }
148 $this->addGroup($uf_group_type, 'uf_group_type', ts('Used For'), '&nbsp;');
149
150 // help text
151 $this->add('wysiwyg', 'help_pre', ts('Pre-form Help'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_UFGroup', 'help_post'));
152 $this->add('wysiwyg', 'help_post', ts('Post-form Help'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_UFGroup', 'help_post'));
153
154 // weight
155 $this->add('text', 'weight', ts('Order'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_UFJoin', 'weight'), TRUE);
156 $this->addRule('weight', ts('is a numeric field'), 'numeric');
157
158 // is this group active ?
159 $this->addElement('checkbox', 'is_active', ts('Is this CiviCRM Profile active?'));
160
161 $paneNames = array('Advanced Settings' => 'buildAdvanceSetting');
162
163 foreach ($paneNames as $name => $type) {
164 if ($this->_id) {
165 $dataURL = "&reset=1&action=update&id={$this->_id}&snippet=4&formType={$type}";
166 }
167 else {
168 $dataURL = "&reset=1&action=add&snippet=4&formType={$type}";
169 }
170
171 $allPanes[$name] = array(
172 'url' => CRM_Utils_System::url('civicrm/admin/uf/group/setting',
173 $dataURL
174 ),
175 'open' => 'false',
176 'id' => $type,
177 );
178
179 CRM_UF_Form_AdvanceSetting::$type($this);
180 }
181
182 $this->addButtons(array(
183 array(
184 'type' => 'next',
185 'name' => ts('Save'),
186 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
187 'isDefault' => TRUE,
188 ),
189 array(
190 'type' => 'cancel',
191 'name' => ts('Cancel'),
192 ),
193 ));
194
195 // views are implemented as frozen form
196 if ($this->_action & CRM_Core_Action::VIEW) {
197 $this->freeze();
198 $this->addElement('button', 'done', ts('Done'), array('onclick' => "location.href='civicrm/admin/uf/group?reset=1&action=browse'"));
199 }
200
201 $this->addFormRule(array('CRM_UF_Form_Group', 'formRule'), $this);
202 }
203
204 /**
205 * Set default values for the form. Note that in edit/view mode
206 * the default values are retrieved from the database
207 *
208 *
209 * @return void
210 */
211 public function setDefaultValues() {
212 $defaults = array();
213 $showHide = new CRM_Core_ShowHideBlocks();
214
215 if ($this->_action == CRM_Core_Action::ADD) {
216 $defaults['weight'] = CRM_Utils_Weight::getDefaultWeight('CRM_Core_DAO_UFJoin');
217 }
218
219 //id fetched for Dojo Pane
220 $pId = CRM_Utils_Request::retrieve('id', 'Positive', $this);
221 if (isset($pId)) {
222 $this->_id = $pId;
223 }
224
225 if ((isset($this->_id))) {
226
227 $defaults['weight'] = CRM_Core_BAO_UFGroup::getWeight($this->_id);
228
229 $params = array('id' => $this->_id);
230 CRM_Core_BAO_UFGroup::retrieve($params, $defaults);
231 $defaults['group'] = CRM_Utils_Array::value('limit_listings_group_id', $defaults);
232 $defaults['add_contact_to_group'] = CRM_Utils_Array::value('add_to_group_id', $defaults);
233 //get the uf join records for current uf group
234 $ufJoinRecords = CRM_Core_BAO_UFGroup::getUFJoinRecord($this->_id);
235 foreach ($ufJoinRecords as $key => $value) {
236 $checked[$value] = 1;
237 }
238 $defaults['uf_group_type'] = isset($checked) ? $checked : "";
239
240 //get the uf join records for current uf group other than default modules
241 $otherModules = array();
242 $otherModules = CRM_Core_BAO_UFGroup::getUFJoinRecord($this->_id, TRUE, TRUE);
243 if (!empty($otherModules)) {
244 $otherModuleString = NULL;
245 foreach ($otherModules as $key) {
246 $otherModuleString .= " [ x ] <label>" . $key . "</label>";
247 }
248 $this->assign('otherModuleString', $otherModuleString);
249 }
250
251 $showAdvanced = 0;
252 $advFields = array(
253 'group',
254 'post_URL',
255 'cancel_URL',
256 'add_captcha',
257 'is_map',
258 'is_uf_link',
259 'is_edit_link',
260 'is_update_dupe',
261 'is_cms_user',
262 'is_proximity_search',
263 );
264 foreach ($advFields as $key) {
265 if (!empty($defaults[$key])) {
266 $showAdvanced = 1;
267 $this->_allPanes['Advanced Settings']['open'] = 'true';
268 break;
269 }
270 }
271 }
272 else {
273 $defaults['is_active'] = 1;
274 $defaults['is_map'] = 0;
275 $defaults['is_update_dupe'] = 0;
276 $defaults['is_proximity_search'] = 0;
277 }
278 // Don't assign showHide elements to template in DELETE mode (fields to be shown and hidden don't exist)
279 if (!($this->_action & CRM_Core_Action::DELETE) && !($this->_action & CRM_Core_Action::DISABLE)) {
280 $showHide->addToTemplate();
281 }
282 $this->assign('allPanes', $this->_allPanes);
283 return $defaults;
284 }
285
286 /**
287 * Global form rule.
288 *
289 * @param array $fields
290 * The input form values.
291 * @param array $files
292 * The uploaded files if any.
293 * @param array $self
294 * Current form object.
295 *
296 * @return bool|array
297 * true if no errors, else array of errors
298 */
299 public static function formRule($fields, $files, $self) {
300 $errors = array();
301
302 //validate profile title as well as name.
303 $title = $fields['title'];
304 $name = CRM_Utils_String::munge($title, '_', 56);
305 $name .= $self->_id ? '_' . $self->_id : '';
306 $query = 'select count(*) from civicrm_uf_group where ( name like %1 ) and id != %2';
307 $pCnt = CRM_Core_DAO::singleValueQuery($query, array(
308 1 => array($name, 'String'),
309 2 => array((int) $self->_id, 'Integer'),
310 ));
311 if ($pCnt) {
312 $errors['title'] = ts('Profile \'%1\' already exists in Database.', array(1 => $title));
313 }
314
315 return empty($errors) ? TRUE : $errors;
316 }
317
318 /**
319 * Process the form.
320 *
321 * @return void
322 */
323 public function postProcess() {
324 if ($this->_action & CRM_Core_Action::DELETE) {
325 $title = CRM_Core_BAO_UFGroup::getTitle($this->_id);
326 CRM_Core_BAO_UFGroup::del($this->_id);
327 CRM_Core_Session::setStatus(ts("Your CiviCRM Profile '%1' has been deleted.", array(1 => $title)), ts('Profile Deleted'), 'success');
328 }
329 elseif ($this->_action & CRM_Core_Action::DISABLE) {
330 $ufJoinParams = array('uf_group_id' => $this->_id);
331 CRM_Core_BAO_UFGroup::delUFJoin($ufJoinParams);
332
333 CRM_Core_BAO_UFGroup::setIsActive($this->_id, 0);
334 }
335 else {
336 // get the submitted form values.
337 $params = $ids = array();
338 $params = $this->controller->exportValues($this->_name);
339
340 if (!array_key_exists('is_active', $params)) {
341 $params['is_active'] = 0;
342 }
343
344 if ($this->_action & (CRM_Core_Action::UPDATE)) {
345 $ids['ufgroup'] = $this->_id;
346 // CRM-5284
347 // lets skip trying to mess around with profile weights and allow the user to do as needed.
348 }
349 elseif ($this->_action & CRM_Core_Action::ADD) {
350 $session = CRM_Core_Session::singleton();
351 $params['created_id'] = $session->get('userID');
352 $params['created_date'] = date('YmdHis');
353 }
354
355 // create uf group
356 $ufGroup = CRM_Core_BAO_UFGroup::add($params, $ids);
357
358 if (!empty($params['is_active'])) {
359 //make entry in uf join table
360 CRM_Core_BAO_UFGroup::createUFJoin($params, $ufGroup->id);
361 }
362 elseif ($this->_id) {
363 // this profile has been set to inactive, delete all corresponding UF Join's
364 $ufJoinParams = array('uf_group_id' => $this->_id);
365 CRM_Core_BAO_UFGroup::delUFJoin($ufJoinParams);
366 }
367
368 if ($this->_action & CRM_Core_Action::UPDATE) {
369 $url = CRM_Utils_System::url('civicrm/admin/uf/group', 'reset=1&action=browse');
370 CRM_Core_Session::setStatus(ts("Your CiviCRM Profile '%1' has been saved.", array(1 => $ufGroup->title)), ts('Profile Saved'), 'success');
371 }
372 else {
373 // Jump directly to adding a field if popups are disabled
374 $action = CRM_Core_Resources::singleton()->ajaxPopupsEnabled ? '' : '/add';
375 $url = CRM_Utils_System::url("civicrm/admin/uf/group/field$action", 'reset=1&new=1&gid=' . $ufGroup->id . '&action=' . ($action ? 'add' : 'browse'));
376 CRM_Core_Session::setStatus(ts('Your CiviCRM Profile \'%1\' has been added. You can add fields to this profile now.',
377 array(1 => $ufGroup->title)
378 ), ts('Profile Added'), 'success');
379 }
380 $session = CRM_Core_Session::singleton();
381 $session->replaceUserContext($url);
382 }
383
384 // update cms integration with registration / my account
385 CRM_Utils_System::updateCategories();
386 }
387
388 }