Convert Contact Search to metadata driven
[civicrm-core.git] / CRM / Admin / Form / SettingTrait.php
CommitLineData
946389fb 1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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-2018
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
41 /**
42 * @var array
43 */
44 protected $settingsMetadata;
45
46 /**
47 * Get default entity.
48 *
49 * @return string
50 */
51 public function getDefaultEntity() {
52 return 'Setting';
53 }
54
55 /**
56 * Get the metadata relating to the settings on the form, ordered by the keys in $this->_settings.
57 *
58 * @return array
59 */
60 protected function getSettingsMetaData() {
61 if (empty($this->settingsMetadata)) {
62 $allSettingMetaData = civicrm_api3('setting', 'getfields', []);
63 $this->settingsMetadata = array_intersect_key($allSettingMetaData['values'], $this->_settings);
64 // This array_merge re-orders to the key order of $this->_settings.
65 $this->settingsMetadata = array_merge($this->_settings, $this->settingsMetadata);
66 }
67 return $this->settingsMetadata;
68 }
69
70 /**
71 * Get the settings which can be stored based on metadata.
72 *
73 * @param array $params
74 * @return array
75 */
76 protected function getSettingsToSetByMetadata($params) {
77 return array_intersect_key($params, $this->_settings);
78 }
79
80 /**
81 * @param $params
82 */
83 protected function filterParamsSetByMetadata(&$params) {
84 foreach ($this->getSettingsToSetByMetadata($params) as $setting => $settingGroup) {
85 //@todo array_diff this
86 unset($params[$setting]);
87 }
88 }
89
6821aa1d 90 /**
91 * Get the metadata for a particular field.
92 *
93 * @param $setting
94 * @return mixed
95 */
96 protected function getSettingMetadata($setting) {
97 return $this->getSettingsMetaData()[$setting];
98 }
99
100 /**
101 * Get the metadata for a particular field for a particular item.
102 *
103 * e.g get 'serialize' key, if exists, for a field.
104 *
105 * @param $setting
106 * @return mixed
107 */
108 protected function getSettingMetadataItem($setting, $item) {
109 return CRM_Utils_Array::value($item, $this->getSettingsMetaData()[$setting]);
110 }
111
e894ae15 112 /**
113 * Add fields in the metadata to the template.
114 */
115 protected function addFieldsDefinedInSettingsMetadata() {
116 $settingMetaData = $this->getSettingsMetaData();
117 $descriptions = [];
118 foreach ($settingMetaData as $setting => $props) {
c5af8245 119 $quickFormType = $this->getQuickFormType($props);
120 if (isset($quickFormType)) {
e894ae15 121 if (isset($props['pseudoconstant'])) {
122 $options = civicrm_api3('Setting', 'getoptions', [
123 'field' => $setting,
124 ]);
125 }
126 else {
127 $options = NULL;
128 }
129 //Load input as readonly whose values are overridden in civicrm.settings.php.
130 if (Civi::settings()->getMandatory($setting)) {
131 $props['html_attributes']['readonly'] = TRUE;
132 $this->includesReadOnlyFields = TRUE;
133 }
134
c5af8245 135 $add = 'add' . $quickFormType;
e894ae15 136 if ($add == 'addElement') {
137 $this->$add(
138 $props['html_type'],
139 $setting,
140 ts($props['title']),
141 ($options !== NULL) ? $options['values'] : CRM_Utils_Array::value('html_attributes', $props, []),
142 ($options !== NULL) ? CRM_Utils_Array::value('html_attributes', $props, []) : NULL
143 );
144 }
145 elseif ($add == 'addSelect') {
146 $this->addElement('select', $setting, ts($props['title']), $options['values'], CRM_Utils_Array::value('html_attributes', $props));
147 }
148 elseif ($add == 'addCheckBox') {
149 $this->addCheckBox($setting, ts($props['title']), $options['values'], NULL, CRM_Utils_Array::value('html_attributes', $props), NULL, NULL, ['&nbsp;&nbsp;']);
150 }
a55c9b35 151 elseif ($add == 'addCheckBoxes') {
152 $options = array_flip($options['values']);
153 $newOptions = [];
154 foreach ($options as $key => $val) {
155 $newOptions[$key] = $val;
156 }
157 $this->addCheckBox($setting,
158 $props['title'],
159 $newOptions,
160 NULL, NULL, NULL, NULL,
161 ['&nbsp;&nbsp;', '&nbsp;&nbsp;', '<br/>']
162 );
163 }
e894ae15 164 elseif ($add == 'addChainSelect') {
165 $this->addChainSelect($setting, [
166 'label' => ts($props['title']),
167 ]);
168 }
169 elseif ($add == 'addMonthDay') {
170 $this->add('date', $setting, ts($props['title']), CRM_Core_SelectValues::date(NULL, 'M d'));
171 }
172 else {
c5af8245 173 $this->$add($setting, ts($props['title']), $options['values']);
e894ae15 174 }
175 // Migrate to using an array as easier in smart...
176 $descriptions[$setting] = ts($props['description']);
177 $this->assign("{$setting}_description", ts($props['description']));
178 if ($setting == 'max_attachments') {
179 //temp hack @todo fix to get from metadata
180 $this->addRule('max_attachments', ts('Value should be a positive number'), 'positiveInteger');
181 }
182 if ($setting == 'maxFileSize') {
183 //temp hack
184 $this->addRule('maxFileSize', ts('Value should be a positive number'), 'positiveInteger');
185 }
186
187 }
188 }
189 // setting_description should be deprecated - see Mail.tpl for metadata based tpl.
190 $this->assign('setting_descriptions', $descriptions);
191 $this->assign('settings_fields', $settingMetaData);
192 }
193
c5af8245 194 /**
195 * Get the quickform type for the given html type.
196 *
197 * @param array $spec
198 *
199 * @return string
200 */
201 protected function getQuickFormType($spec) {
202 if (isset($spec['quick_form_type'])) {
203 return $spec['quick_form_type'];
204 }
205 $mapping = [
206 'checkboxes' => 'CheckBoxes',
207 'radio' => 'Radio',
208 ];
209 return $mapping[$spec['html_type']];
210 }
601361a3 211 /**
212 * Get the defaults for all fields defined in the metadata.
213 *
214 * All others are pending conversion.
215 */
216 protected function setDefaultsForMetadataDefinedFields() {
217 CRM_Core_BAO_ConfigSetting::retrieve($this->_defaults);
6821aa1d 218 foreach (array_keys($this->_settings) as $setting) {
601361a3 219 $this->_defaults[$setting] = civicrm_api3('setting', 'getvalue', ['name' => $setting]);
6821aa1d 220 $spec = $this->getSettingsMetadata()[$setting];
221 if (!empty($spec['serialize'])) {
222 $this->_defaults[$setting] = CRM_Core_DAO::unSerializeField($this->_defaults[$setting], $spec['serialize']);
223 }
c5af8245 224 if ($this->getQuickFormType($spec) === 'CheckBoxes') {
6821aa1d 225 $this->_defaults[$setting] = array_fill_keys($this->_defaults[$setting], 1);
226 }
227 }
228 }
229
230 /**
231 * @param $params
232 *
233 */
234 protected function saveMetadataDefinedSettings($params) {
235 $settings = $this->getSettingsToSetByMetadata($params);
236 foreach ($settings as $setting => $settingValue) {
2e94f477 237 if ($this->getQuickFormType($this->getSettingMetadata($setting)) === 'CheckBoxes') {
6821aa1d 238 $settings[$setting] = array_keys($settingValue);
239 }
601361a3 240 }
6821aa1d 241 civicrm_api3('setting', 'create', $settings);
601361a3 242 }
243
946389fb 244}