Merge pull request #9587 from colemanw/CRM-19802
[civicrm-core.git] / CRM / Admin / Form / Options.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
0f03f337 6 | Copyright CiviCRM LLC (c) 2004-2017 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
0f03f337 31 * @copyright CiviCRM LLC (c) 2004-2017
6a488035
TO
32 */
33
34/**
ce064e4f 35 * This class generates form components for Options.
6a488035
TO
36 */
37class CRM_Admin_Form_Options extends CRM_Admin_Form {
38
39 /**
eceb18cc 40 * The option group name.
6a488035
TO
41 *
42 * @var array
6a488035
TO
43 */
44 protected $_gName;
45
46 /**
47 * The option group name in display format (capitalized, without underscores...etc)
48 *
49 * @var array
6a488035 50 */
6c2473d5 51 protected $_gLabel;
6a488035
TO
52
53 /**
100fef9d 54 * Pre-process
6a488035
TO
55 */
56 public function preProcess() {
57 parent::preProcess();
58 $session = CRM_Core_Session::singleton();
118e964e
CW
59 if (!$this->_gName && !empty($this->urlPath[3])) {
60 $this->_gName = $this->urlPath[3];
61 }
62 if (!$this->_gName && !empty($_GET['gid'])) {
63 $this->_gName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', (int) $_GET['gid'], 'name');
6a488035
TO
64 }
65 if ($this->_gName) {
66 $this->set('gName', $this->_gName);
67 }
68 else {
69 $this->_gName = $this->get('gName');
70 }
118e964e
CW
71 $this->_gid = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup',
72 $this->_gName,
73 'id',
74 'name'
75 );
faa2cea0 76 $this->_gLabel = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', $this->_gid, 'title');
353ffa53
TO
77 $url = "civicrm/admin/options/{$this->_gName}";
78 $params = "reset=1";
6a488035
TO
79
80 if (($this->_action & CRM_Core_Action::DELETE) &&
81 in_array($this->_gName, array('email_greeting', 'postal_greeting', 'addressee'))
82 ) {
83 // Don't allow delete if the option value belongs to addressee, postal or email greetings and is in use.
353ffa53 84 $findValue = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue', $this->_id, 'value');
6a488035
TO
85 $queryParam = array(1 => array($findValue, 'Integer'));
86 $columnName = $this->_gName . "_id";
353ffa53
TO
87 $sql = "SELECT count(id) FROM civicrm_contact WHERE " . $columnName . " = %1";
88 $isInUse = CRM_Core_DAO::singleValueQuery($sql, $queryParam);
6a488035
TO
89 if ($isInUse) {
90 $scriptURL = "<a href='" . CRM_Utils_System::docURL2('Update Greetings and Address Data for Contacts', TRUE, NULL, NULL, NULL, "wiki") . "'>" . ts('Learn more about a script that can automatically update contact addressee and greeting options.') . "</a>";
353ffa53
TO
91 CRM_Core_Session::setStatus(ts('The selected %1 option has <strong>not been deleted</strong> because it is currently in use. Please update these contacts to use a different format before deleting this option. %2', array(
92 1 => $this->_gLabel,
8d7a9d07 93 2 => $scriptURL,
353ffa53 94 )), ts('Sorry'), 'error');
6a488035
TO
95 $redirect = CRM_Utils_System::url($url, $params);
96 CRM_Utils_System::redirect($redirect);
97 }
98 }
99
6a488035
TO
100 $session->pushUserContext(CRM_Utils_System::url($url, $params));
101 $this->assign('id', $this->_id);
102
103 if ($this->_id && in_array($this->_gName, CRM_Core_OptionGroup::$_domainIDGroups)) {
104 $domainID = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue', $this->_id, 'domain_id', 'id');
105 if (CRM_Core_Config::domainID() != $domainID) {
0499b0ad 106 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
6a488035
TO
107 }
108 }
109 }
110
111 /**
c490a46a 112 * Set default values for the form.
6a488035 113 */
00be9182 114 public function setDefaultValues() {
6a488035
TO
115 $defaults = parent::setDefaultValues();
116
2b90b596
CW
117 // Default weight & value
118 $fieldValues = array('option_group_id' => $this->_gid);
119 foreach (array('weight', 'value') as $field) {
120 if (empty($defaults[$field])) {
121 $defaults[$field] = CRM_Utils_Weight::getDefaultWeight('CRM_Core_DAO_OptionValue', $fieldValues, $field);
122 }
6a488035
TO
123 }
124
125 //setDefault of contact types for email greeting, postal greeting, addressee, CRM-4575
126 if (in_array($this->_gName, array(
353ffa53
TO
127 'email_greeting',
128 'postal_greeting',
8d7a9d07 129 'addressee',
353ffa53 130 ))) {
6a488035
TO
131 $defaults['contactOptions'] = (CRM_Utils_Array::value('filter', $defaults)) ? $defaults['filter'] : NULL;
132 }
133 // CRM-11516
134 if ($this->_gName == 'payment_instrument' && $this->_id) {
135 $defaults['financial_account_id'] = CRM_Financial_BAO_FinancialTypeAccount::getFinancialAccount($this->_id, 'civicrm_option_value', 'financial_account_id');
136 }
b62580ac
CW
137 if (empty($this->_id) || !CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue', $this->_id, 'color')) {
138 $defaults['color'] = '#ffffff';
139 }
6a488035
TO
140 return $defaults;
141 }
142
143 /**
eceb18cc 144 * Build the form object.
6a488035
TO
145 */
146 public function buildQuickForm() {
147 parent::buildQuickForm();
e2046b33
CW
148 $this->setPageTitle(ts('%1 Option', array(1 => $this->_gLabel)));
149
6a488035
TO
150 if ($this->_action & CRM_Core_Action::DELETE) {
151 return;
152 }
153
154 $this->applyFilter('__ALL__', 'trim');
155
156 $isReserved = FALSE;
157 if ($this->_id) {
158 $isReserved = (bool) CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue', $this->_id, 'is_reserved');
159 }
160
161 $this->add('text',
162 'label',
163 ts('Label'),
164 CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionValue', 'label'),
165 TRUE
166 );
167
635a99e5
CW
168 if ($this->_gName != 'activity_type') {
169 $this->add('text',
170 'value',
171 ts('Value'),
172 CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionValue', 'value'),
173 TRUE
174 );
175 }
0c6fe5b5
CW
176 else {
177 $this->add('text', 'icon', ts('Icon'), array('class' => 'crm-icon-picker', 'title' => ts('Choose Icon'), 'allowClear' => TRUE));
178 }
49c233c1 179
b62580ac
CW
180 if ($this->_gName == 'activity_status') {
181 $this->add('color', 'color', ts('Color'));
182 }
183
6a488035 184 if (!in_array($this->_gName, array(
353ffa53
TO
185 'email_greeting',
186 'postal_greeting',
8d7a9d07 187 'addressee',
353ffa53
TO
188 )) && !$isReserved
189 ) {
0c1e1321
SL
190 $domainSpecificOptionGroups = array('from_email_address');
191 $domainSpecific = in_array($this->_gName, $domainSpecificOptionGroups) ? TRUE : FALSE;
6a488035
TO
192 $this->addRule('label',
193 ts('This Label already exists in the database for this option group. Please select a different Value.'),
194 'optionExists',
e6101f17 195 array('CRM_Core_DAO_OptionValue', $this->_id, $this->_gid, 'label', $domainSpecific)
6a488035
TO
196 );
197 }
198
199 if ($this->_gName == 'case_status') {
02fc859b 200 $classes = array(
353ffa53 201 'Opened' => ts('Opened'),
6a488035
TO
202 'Closed' => ts('Closed'),
203 );
204
205 $grouping = $this->add('select',
206 'grouping',
207 ts('Status Class'),
208 $classes
209 );
210 if ($isReserved) {
211 $grouping->freeze();
212 }
213 }
214 // CRM-11516
215 if ($this->_gName == 'payment_instrument') {
f743a6eb 216 $accountType = CRM_Core_PseudoConstant::accountOptionValues('financial_account_type', NULL, " AND v.name = 'Asset' ");
6a488035 217 $financialAccount = CRM_Contribute_PseudoConstant::financialAccount(NULL, key($accountType));
8ef12e64 218
219 $this->add('select', 'financial_account_id', ts('Financial Account'),
fd1ae183
PN
220 array('' => ts('- select -')) + $financialAccount,
221 TRUE
6a488035
TO
222 );
223 }
224
225 $required = FALSE;
226 if ($this->_gName == 'custom_search') {
227 $required = TRUE;
228 }
229 elseif ($this->_gName == 'redaction_rule' || $this->_gName == 'engagement_index') {
6a488035
TO
230 if ($this->_gName == 'redaction_rule') {
231 $this->add('checkbox',
232 'filter',
233 ts('Regular Expression?')
234 );
235 }
236 }
237 if ($this->_gName == 'participant_listing') {
238 $this->add('text',
239 'description',
240 ts('Description'),
241 CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionValue', 'description')
242 );
243 }
244 else {
245 // Hard-coding attributes here since description is still stored as varchar and not text in the schema. dgg
5d51a2f9 246 $this->add('wysiwyg', 'description',
6a488035
TO
247 ts('Description'),
248 array('rows' => 4, 'cols' => 80),
249 $required
250 );
251 }
252
253 if ($this->_gName == 'event_badge') {
254 $this->add('text',
255 'name',
256 ts('Class Name'),
257 CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionValue', 'name')
258 );
259 }
260
261 $this->add('text',
262 'weight',
7ecddde4 263 ts('Order'),
6a488035
TO
264 CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionValue', 'weight'),
265 TRUE
266 );
267 $this->addRule('weight', ts('is a numeric field'), 'numeric');
268
269 // If CiviCase enabled AND "Add" mode OR "edit" mode for non-reserved activities, only allow user to pick Core or CiviCase component.
270 // FIXME: Each component should define whether adding new activity types is allowed.
271 $config = CRM_Core_Config::singleton();
272 if ($this->_gName == 'activity_type' && in_array("CiviCase", $config->enableComponents) &&
273 (($this->_action & CRM_Core_Action::ADD) || !$isReserved)
274 ) {
275 $caseID = CRM_Core_Component::getComponentID('CiviCase');
5ce691e5 276 $components = array('' => ts('Contacts AND Cases'), $caseID => ts('Cases Only'));
6a488035
TO
277 $this->add('select',
278 'component_id',
279 ts('Component'),
280 $components, FALSE
281 );
282 }
283
284 $enabled = $this->add('checkbox', 'is_active', ts('Enabled?'));
285
286 if ($isReserved) {
287 $enabled->freeze();
288 }
289
290 //fix for CRM-3552, CRM-4575
9eab4fdd 291 $showIsDefaultGroups = array(
292 'email_greeting',
293 'postal_greeting',
294 'addressee',
295 'from_email_address',
296 'case_status',
297 'encounter_medium',
298 'case_type',
299 'payment_instrument',
300 'communication_style',
694ca46e 301 'soft_credit_type',
3fff8d1e 302 'website_type',
9eab4fdd 303 );
304
305 if (in_array($this->_gName, $showIsDefaultGroups)) {
6a488035
TO
306 $this->assign('showDefault', TRUE);
307 $this->add('checkbox', 'is_default', ts('Default Option?'));
308 }
309
310 //get contact type for which user want to create a new greeting/addressee type, CRM-4575
311 if (in_array($this->_gName, array(
353ffa53
TO
312 'email_greeting',
313 'postal_greeting',
8d7a9d07 314 'addressee',
353ffa53
TO
315 )) && !$isReserved
316 ) {
02fc859b 317 $values = array(
353ffa53 318 1 => ts('Individual'),
6a488035
TO
319 2 => ts('Household'),
320 3 => ts('Organization'),
321 4 => ts('Multiple Contact Merge'),
322 );
323 $this->add('select', 'contactOptions', ts('Contact Type'), array('' => '-select-') + $values, TRUE);
324 $this->assign('showContactFilter', TRUE);
325 }
326
327 if ($this->_gName == 'participant_status') {
328 // For Participant Status options, expose the 'filter' field to track which statuses are "Counted", and the Visibility field
329 $element = $this->add('checkbox', 'filter', ts('Counted?'));
330 $this->add('select', 'visibility_id', ts('Visibility'), CRM_Core_PseudoConstant::visibility());
331 }
332 if ($this->_gName == 'participant_role') {
333 // For Participant Role options, expose the 'filter' field to track which statuses are "Counted"
334 $this->add('checkbox', 'filter', ts('Counted?'));
335 }
336
337 $this->addFormRule(array('CRM_Admin_Form_Options', 'formRule'), $this);
338 }
339
340 /**
eceb18cc 341 * Global form rule.
6a488035 342 *
5173bd95
TO
343 * @param array $fields
344 * The input form values.
345 * @param array $files
346 * The uploaded files if any.
347 * @param array $self
348 * Current form object.
6a488035 349 *
a6c01b45
CW
350 * @return array
351 * array of errors / empty array.
6a488035 352 */
00be9182 353 public static function formRule($fields, $files, $self) {
6a488035 354 $errors = array();
8cc574cf 355 if ($self->_gName == 'case_status' && empty($fields['grouping'])) {
6a488035
TO
356 $errors['grouping'] = ts('Status class is a required field');
357 }
358
353ffa53
TO
359 if (in_array($self->_gName, array(
360 'email_greeting',
361 'postal_greeting',
8d7a9d07 362 'addressee',
353ffa53
TO
363 )) && empty($self->_defaultValues['is_reserved'])
364 ) {
365 $label = $fields['label'];
366 $condition = " AND v.label = '{$label}' ";
367 $values = CRM_Core_OptionGroup::values($self->_gName, FALSE, FALSE, FALSE, $condition, 'filter');
6a488035
TO
368 $checkContactOptions = TRUE;
369
370 if ($self->_id && ($self->_defaultValues['contactOptions'] == $fields['contactOptions'])) {
371 $checkContactOptions = FALSE;
372 }
373
374 if ($checkContactOptions && in_array($fields['contactOptions'], $values)) {
375 $errors['label'] = ts('This Label already exists in the database for the selected contact type.');
376 }
377 }
378
379 if ($self->_gName == 'from_email_address') {
380 $formEmail = CRM_Utils_Mail::pluckEmailFromHeader($fields['label']);
381 if (!CRM_Utils_Rule::email($formEmail)) {
f289559e 382 $errors['label'] = ts('Please enter a valid email address.');
6a488035
TO
383 }
384
385 $formName = explode('"', $fields['label']);
a7488080 386 if (empty($formName[1]) || count($formName) != 3) {
6a488035
TO
387 $errors['label'] = ts('Please follow the proper format for From Email Address');
388 }
389 }
390
d3b018ea 391 $dataType = self::getOptionGroupDataType($self->_gName);
89c05afc 392 if ($dataType && $self->_gName !== 'activity_type') {
d67d221a
SL
393 $validate = CRM_Utils_Type::validate($fields['value'], $dataType, FALSE);
394 if (!$validate) {
395 CRM_Core_Session::setStatus(
396 ts('Data Type of the value field for this option value does not match ' . $dataType),
397 ts('Value field Data Type mismatch'));
398 }
399 }
6a488035
TO
400 return $errors;
401 }
402
c62c37c7
SL
403 /**
404 * Get the DataType for a specified Option Group.
405 *
1d4e5453 406 * @param string $optionGroupName name of the option group
c62c37c7 407 *
1d4e5453 408 * @return string|null
c62c37c7
SL
409 */
410 public static function getOptionGroupDataType($optionGroupName) {
89c05afc 411 $optionGroupId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', $optionGroupName, 'id', 'name');
c62c37c7 412
89c05afc 413 $dataType = CRM_Core_BAO_OptionGroup::getDataType($optionGroupId);
c62c37c7
SL
414 return $dataType;
415 }
416
6a488035 417 /**
eceb18cc 418 * Process the form submission.
6a488035
TO
419 */
420 public function postProcess() {
421 if ($this->_action & CRM_Core_Action::DELETE) {
422 $fieldValues = array('option_group_id' => $this->_gid);
423 $wt = CRM_Utils_Weight::delWeight('CRM_Core_DAO_OptionValue', $this->_id, $fieldValues);
424
425 if (CRM_Core_BAO_OptionValue::del($this->_id)) {
426 if ($this->_gName == 'phone_type') {
427 CRM_Core_BAO_Phone::setOptionToNull(CRM_Utils_Array::value('value', $this->_defaultValues));
428 }
429
6c2473d5 430 CRM_Core_Session::setStatus(ts('Selected %1 type has been deleted.', array(1 => $this->_gLabel)), ts('Record Deleted'), 'success');
6a488035
TO
431 }
432 else {
6c2473d5 433 CRM_Core_Session::setStatus(ts('Selected %1 type has not been deleted.', array(1 => $this->_gLabel)), ts('Sorry'), 'error');
6a488035
TO
434 CRM_Utils_Weight::correctDuplicateWeights('CRM_Core_DAO_OptionValue', $fieldValues);
435 }
436 }
437 else {
b62580ac 438 $ids = array();
6a488035
TO
439 $params = $this->exportValues();
440
441 // allow multiple defaults within group.
442 $allowMultiDefaults = array('email_greeting', 'postal_greeting', 'addressee', 'from_email_address');
443 if (in_array($this->_gName, $allowMultiDefaults)) {
444 if ($this->_gName == 'from_email_address') {
445 $params['reset_default_for'] = array('domain_id' => CRM_Core_Config::domainID());
446 }
447 elseif ($filter = CRM_Utils_Array::value('contactOptions', $params)) {
448 $params['filter'] = $filter;
449 $params['reset_default_for'] = array('filter' => "0, " . $params['filter']);
450 }
451
452 //make sure we should has to have space, CRM-6977
453 if ($this->_gName == 'from_email_address') {
454 $params['label'] = str_replace('"<', '" <', $params['label']);
455 }
456 }
457
74b187a2
KJ
458 // set value of filter if not present in params
459 if ($this->_id && !array_key_exists('filter', $params)) {
460 if ($this->_gName == 'participant_role') {
461 $params['filter'] = 0;
0db6c3e1
TO
462 }
463 else {
74b187a2
KJ
464 $params['filter'] = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue', $this->_id, 'filter', 'id');
465 }
6a488035
TO
466 }
467
b62580ac
CW
468 if (isset($params['color']) && strtolower($params['color']) == '#ffffff') {
469 $params['color'] = 'null';
470 }
471
6a488035
TO
472 $groupParams = array('name' => ($this->_gName));
473 $optionValue = CRM_Core_OptionValue::addOptionValue($params, $groupParams, $this->_action, $this->_id);
8ef12e64 474
6a488035 475 // CRM-11516
a7488080 476 if (!empty($params['financial_account_id'])) {
f743a6eb 477 $relationTypeId = key(CRM_Core_PseudoConstant::accountOptionValues('account_relationship', NULL, " AND v.name LIKE 'Asset Account is' "));
6a488035
TO
478 $params = array(
479 'entity_table' => 'civicrm_option_value',
480 'entity_id' => $optionValue->id,
481 'account_relationship' => $relationTypeId,
21dfd5f5 482 'financial_account_id' => $params['financial_account_id'],
6a488035
TO
483 );
484 CRM_Financial_BAO_FinancialTypeAccount::add($params);
485 }
486
353ffa53
TO
487 CRM_Core_Session::setStatus(ts('The %1 \'%2\' has been saved.', array(
488 1 => $this->_gLabel,
8d7a9d07 489 2 => $optionValue->label,
353ffa53 490 )), ts('Saved'), 'success');
7c2b40d1
CW
491
492 $this->ajaxResponse['optionValue'] = $optionValue->toArray();
6a488035
TO
493 }
494 }
e2046b33 495
6a488035 496}