Merge pull request #14957 from eileenmcnaughton/event_nfc
[civicrm-core.git] / CRM / Admin / Form / SettingTrait.php
CommitLineData
946389fb 1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
946389fb 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
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
946389fb 32 */
33
34/**
35 * This trait allows us to consolidate Preferences & Settings forms.
36 *
37 * It is intended mostly as part of a refactoring process to get rid of having 2.
38 */
39trait CRM_Admin_Form_SettingTrait {
40
51f35276
FG
41 /**
42 * The setting page filter.
43 *
44 * @var string
45 */
46 private $_filter;
47
946389fb 48 /**
49 * @var array
50 */
51 protected $settingsMetadata;
52
53 /**
54 * Get default entity.
55 *
56 * @return string
57 */
58 public function getDefaultEntity() {
59 return 'Setting';
60 }
61
62 /**
63 * Get the metadata relating to the settings on the form, ordered by the keys in $this->_settings.
64 *
65 * @return array
66 */
67 protected function getSettingsMetaData() {
68 if (empty($this->settingsMetadata)) {
4cc9fbc2 69 $this->settingsMetadata = \Civi\Core\SettingsMetadata::getMetadata(['name' => array_keys($this->_settings)], NULL, TRUE);
946389fb 70 // This array_merge re-orders to the key order of $this->_settings.
71 $this->settingsMetadata = array_merge($this->_settings, $this->settingsMetadata);
72 }
73 return $this->settingsMetadata;
74 }
75
76 /**
77 * Get the settings which can be stored based on metadata.
78 *
79 * @param array $params
80 * @return array
81 */
82 protected function getSettingsToSetByMetadata($params) {
74f89a9f 83 $setValues = array_intersect_key($params, $this->_settings);
84 // Checkboxes will be unset rather than empty so we need to add them back in.
85 // Handle quickform hateability just once, right here right now.
86 $unsetValues = array_diff_key($this->_settings, $params);
87 foreach ($unsetValues as $key => $unsetValue) {
88 if ($this->getQuickFormType($this->getSettingMetadata($key)) === 'CheckBox') {
89 $setValues[$key] = [$key => 0];
90 }
91 }
92 return $setValues;
946389fb 93 }
94
95 /**
96 * @param $params
97 */
98 protected function filterParamsSetByMetadata(&$params) {
99 foreach ($this->getSettingsToSetByMetadata($params) as $setting => $settingGroup) {
100 //@todo array_diff this
101 unset($params[$setting]);
102 }
103 }
104
6821aa1d 105 /**
106 * Get the metadata for a particular field.
107 *
108 * @param $setting
109 * @return mixed
110 */
111 protected function getSettingMetadata($setting) {
112 return $this->getSettingsMetaData()[$setting];
113 }
114
115 /**
116 * Get the metadata for a particular field for a particular item.
117 *
118 * e.g get 'serialize' key, if exists, for a field.
119 *
120 * @param $setting
62d3ee27 121 * @param $item
6821aa1d 122 * @return mixed
123 */
124 protected function getSettingMetadataItem($setting, $item) {
125 return CRM_Utils_Array::value($item, $this->getSettingsMetaData()[$setting]);
126 }
127
51f35276
FG
128 /**
129 * @return string
130 */
131 protected function getSettingPageFilter() {
132 if (!isset($this->_filter)) {
133 // Get the last URL component without modifying the urlPath property.
134 $urlPath = array_values($this->urlPath);
135 $this->_filter = end($urlPath);
136 }
137 return $this->_filter;
138 }
139
140 /**
141 * Returns a re-keyed copy of the settings, ordered by weight.
142 *
143 * @return array
144 */
145 protected function getSettingsOrderedByWeight() {
146 $settingMetaData = $this->getSettingsMetaData();
147 $filter = $this->getSettingPageFilter();
148
149 usort($settingMetaData, function ($a, $b) use ($filter) {
150 // Handle cases in which a comparison is impossible. Such will be considered ties.
151 if (
152 // A comparison can't be made unless both setting weights are declared.
153 !isset($a['settings_pages'][$filter]['weight'], $b['settings_pages'][$filter]['weight'])
154 // A pair of settings might actually have the same weight.
155 || $a['settings_pages'][$filter]['weight'] === $b['settings_pages'][$filter]['weight']
156 ) {
157 return 0;
158 }
159
160 return $a['settings_pages'][$filter]['weight'] > $b['settings_pages'][$filter]['weight'] ? 1 : -1;
161 });
162
163 return $settingMetaData;
164 }
165
e894ae15 166 /**
167 * Add fields in the metadata to the template.
168 */
169 protected function addFieldsDefinedInSettingsMetadata() {
170 $settingMetaData = $this->getSettingsMetaData();
171 $descriptions = [];
172 foreach ($settingMetaData as $setting => $props) {
c5af8245 173 $quickFormType = $this->getQuickFormType($props);
174 if (isset($quickFormType)) {
719eda4a 175 $options = CRM_Utils_Array::value('options', $props);
4cc9fbc2 176 if ($options) {
1c8738dd 177 if ($props['html_type'] === 'Select' && isset($props['is_required']) && $props['is_required'] === FALSE && !isset($options[''])) {
178 // If the spec specifies the field is not required add a null option.
179 // Why not if empty($props['is_required']) - basically this has been added to the spec & might not be set to TRUE
180 // when it is true.
181 $options = ['' => ts('None')] + $options;
182 }
e894ae15 183 }
c89a43b3 184 if ($props['type'] === 'Boolean') {
185 $options = [$props['title'] => $props['name']];
e894ae15 186 }
c89a43b3 187
e894ae15 188 //Load input as readonly whose values are overridden in civicrm.settings.php.
189 if (Civi::settings()->getMandatory($setting)) {
190 $props['html_attributes']['readonly'] = TRUE;
191 $this->includesReadOnlyFields = TRUE;
192 }
193
c5af8245 194 $add = 'add' . $quickFormType;
e894ae15 195 if ($add == 'addElement') {
196 $this->$add(
197 $props['html_type'],
198 $setting,
199 ts($props['title']),
c89a43b3 200 ($options !== NULL) ? $options : CRM_Utils_Array::value('html_attributes', $props, []),
e894ae15 201 ($options !== NULL) ? CRM_Utils_Array::value('html_attributes', $props, []) : NULL
202 );
203 }
204 elseif ($add == 'addSelect') {
c89a43b3 205 $this->addElement('select', $setting, ts($props['title']), $options, CRM_Utils_Array::value('html_attributes', $props));
e894ae15 206 }
207 elseif ($add == 'addCheckBox') {
969afb18 208 $this->addCheckBox($setting, '', $options, NULL, CRM_Utils_Array::value('html_attributes', $props), NULL, NULL, ['&nbsp;&nbsp;']);
e894ae15 209 }
a55c9b35 210 elseif ($add == 'addCheckBoxes') {
4e086328
CW
211 $newOptions = array_flip($options);
212 $classes = 'crm-checkbox-list';
213 if (!empty($props['sortable'])) {
214 $classes .= ' crm-sortable-list';
215 $newOptions = array_flip(self::reorderSortableOptions($setting, $options));
a55c9b35 216 }
4e086328 217 $settingMetaData[$setting]['wrapper_element'] = ['<ul class="' . $classes . '"><li>', '</li></ul>'];
a55c9b35 218 $this->addCheckBox($setting,
219 $props['title'],
220 $newOptions,
221 NULL, NULL, NULL, NULL,
bfd9c358 222 '</li><li>'
a55c9b35 223 );
224 }
e894ae15 225 elseif ($add == 'addChainSelect') {
226 $this->addChainSelect($setting, [
227 'label' => ts($props['title']),
228 ]);
229 }
230 elseif ($add == 'addMonthDay') {
231 $this->add('date', $setting, ts($props['title']), CRM_Core_SelectValues::date(NULL, 'M d'));
232 }
eba92929 233 elseif ($add === 'addEntityRef') {
234 $this->$add($setting, ts($props['title']), $props['entity_reference_options']);
235 }
c7cd4e2c 236 elseif ($add === 'addYesNo' && ($props['type'] === 'Boolean')) {
be2fb01f 237 $this->addRadio($setting, ts($props['title']), [1 => 'Yes', 0 => 'No'], NULL, '&nbsp;&nbsp;');
c7cd4e2c 238 }
8a52ae34
CW
239 elseif ($add === 'add') {
240 $this->add($props['html_type'], $setting, ts($props['title']), $options);
241 }
e894ae15 242 else {
c89a43b3 243 $this->$add($setting, ts($props['title']), $options);
e894ae15 244 }
245 // Migrate to using an array as easier in smart...
f8857611 246 $description = CRM_Utils_Array::value('description', $props);
247 $descriptions[$setting] = $description;
248 $this->assign("{$setting}_description", $description);
e894ae15 249 if ($setting == 'max_attachments') {
250 //temp hack @todo fix to get from metadata
251 $this->addRule('max_attachments', ts('Value should be a positive number'), 'positiveInteger');
252 }
253 if ($setting == 'maxFileSize') {
254 //temp hack
255 $this->addRule('maxFileSize', ts('Value should be a positive number'), 'positiveInteger');
256 }
257
258 }
259 }
260 // setting_description should be deprecated - see Mail.tpl for metadata based tpl.
261 $this->assign('setting_descriptions', $descriptions);
262 $this->assign('settings_fields', $settingMetaData);
51f35276 263 $this->assign('fields', $this->getSettingsOrderedByWeight());
e894ae15 264 }
265
c5af8245 266 /**
267 * Get the quickform type for the given html type.
268 *
269 * @param array $spec
270 *
271 * @return string
272 */
273 protected function getQuickFormType($spec) {
0e700ee7 274 if (isset($spec['quick_form_type']) &&
275 !($spec['quick_form_type'] === 'Element' && !empty($spec['html_type']))) {
5c33bd6b 276 // This is kinda transitional
c5af8245 277 return $spec['quick_form_type'];
278 }
5c33bd6b 279
280 // The spec for settings has been updated for consistency - we provide deprecation notices for sites that have
281 // not made this change.
282 $htmlType = $spec['html_type'];
283 if ($htmlType !== strtolower($htmlType)) {
284 CRM_Core_Error::deprecatedFunctionWarning(ts('Settings fields html_type should be lower case - see https://docs.civicrm.org/dev/en/latest/framework/setting/ - this needs to be fixed for ' . $spec['name']));
285 $htmlType = strtolower($spec['html_type']);
286 }
c5af8245 287 $mapping = [
288 'checkboxes' => 'CheckBoxes',
c89a43b3 289 'checkbox' => 'CheckBox',
c5af8245 290 'radio' => 'Radio',
b70c6629 291 'select' => 'Select',
7399a0a6 292 'textarea' => 'Element',
a7e15692 293 'text' => 'Element',
eba92929 294 'entity_reference' => 'EntityRef',
5c33bd6b 295 'advmultiselect' => 'Element',
c5af8245 296 ];
8a52ae34 297 $mapping += array_fill_keys(CRM_Core_Form::$html5Types, '');
5c33bd6b 298 return $mapping[$htmlType];
c5af8245 299 }
62d3ee27 300
601361a3 301 /**
302 * Get the defaults for all fields defined in the metadata.
303 *
304 * All others are pending conversion.
305 */
306 protected function setDefaultsForMetadataDefinedFields() {
307 CRM_Core_BAO_ConfigSetting::retrieve($this->_defaults);
6821aa1d 308 foreach (array_keys($this->_settings) as $setting) {
601361a3 309 $this->_defaults[$setting] = civicrm_api3('setting', 'getvalue', ['name' => $setting]);
6821aa1d 310 $spec = $this->getSettingsMetadata()[$setting];
311 if (!empty($spec['serialize'])) {
312 $this->_defaults[$setting] = CRM_Core_DAO::unSerializeField($this->_defaults[$setting], $spec['serialize']);
313 }
c5af8245 314 if ($this->getQuickFormType($spec) === 'CheckBoxes') {
6821aa1d 315 $this->_defaults[$setting] = array_fill_keys($this->_defaults[$setting], 1);
316 }
74f89a9f 317 if ($this->getQuickFormType($spec) === 'CheckBox') {
318 $this->_defaults[$setting] = [$setting => $this->_defaults[$setting]];
319 }
6821aa1d 320 }
321 }
322
323 /**
281db812 324 * Save any fields which have been defined via metadata.
325 *
326 * (Other fields are hack-handled... sadly.
327 *
328 * @param array $params
329 * Form input.
6821aa1d 330 *
281db812 331 * @throws \CiviCRM_API3_Exception
6821aa1d 332 */
333 protected function saveMetadataDefinedSettings($params) {
334 $settings = $this->getSettingsToSetByMetadata($params);
335 foreach ($settings as $setting => $settingValue) {
4e086328
CW
336 $settingMetaData = $this->getSettingMetadata($setting);
337 if (!empty($settingMetaData['sortable'])) {
338 $settings[$setting] = $this->getReorderedSettingData($setting, $settingValue);
339 }
340 elseif ($this->getQuickFormType($settingMetaData) === 'CheckBoxes') {
6821aa1d 341 $settings[$setting] = array_keys($settingValue);
342 }
4e086328 343 elseif ($this->getQuickFormType($settingMetaData) === 'CheckBox') {
74f89a9f 344 // This will be an array with one value.
345 $settings[$setting] = (int) reset($settings[$setting]);
346 }
601361a3 347 }
6821aa1d 348 civicrm_api3('setting', 'create', $settings);
601361a3 349 }
350
4e086328
CW
351 /**
352 * Display options in correct order on the form
353 *
354 * @param $setting
355 * @param $options
356 * @return array
357 */
358 public static function reorderSortableOptions($setting, $options) {
359 return array_merge(array_flip(Civi::settings()->get($setting)), $options);
360 }
361
362 /**
363 * @param string $setting
364 * @param array $settingValue
365 *
366 * @return array
367 */
368 private function getReorderedSettingData($setting, $settingValue) {
369 // Get order from $_POST as $_POST maintains the order the sorted setting
370 // options were sent. You can simply assign data from $_POST directly to
371 // $settings[] but preference has to be given to data from Quickform.
372 $order = array_keys(\CRM_Utils_Request::retrieve($setting, 'String'));
373 $settingValueKeys = array_keys($settingValue);
374 return array_intersect($order, $settingValueKeys);
375 }
376
946389fb 377}