Merge pull request #9596 from eileenmcnaughton/performance
[civicrm-core.git] / CRM / Admin / Form / Preferences.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 */
33
34 /**
35 * Base class for settings forms.
36 */
37 class CRM_Admin_Form_Preferences extends CRM_Core_Form {
38 protected $_system = FALSE;
39 protected $_contactID = NULL;
40 public $_action = NULL;
41
42 protected $_checkbox = NULL;
43
44 protected $_varNames = NULL;
45
46 protected $_config = NULL;
47
48 protected $_params = NULL;
49
50 public function preProcess() {
51 $this->_contactID = CRM_Utils_Request::retrieve('cid', 'Positive',
52 $this, FALSE
53 );
54 $this->_system = CRM_Utils_Request::retrieve('system', 'Boolean',
55 $this, FALSE, TRUE
56 );
57 $this->_action = CRM_Utils_Request::retrieve('action', 'String',
58 $this, FALSE, 'update'
59 );
60 if (isset($action)) {
61 $this->assign('action', $action);
62 }
63
64 $session = CRM_Core_Session::singleton();
65
66 $this->_config = new CRM_Core_DAO();
67
68 if ($this->_system) {
69 if (CRM_Core_Permission::check('administer CiviCRM')) {
70 $this->_contactID = NULL;
71 }
72 else {
73 CRM_Utils_System::fatal('You do not have permission to edit preferences');
74 }
75 $this->_config->contact_id = NULL;
76 }
77 else {
78 if (!$this->_contactID) {
79 $this->_contactID = $session->get('userID');
80 if (!$this->_contactID) {
81 CRM_Utils_System::fatal('Could not retrieve contact id');
82 }
83 $this->set('cid', $this->_contactID);
84 }
85 $this->_config->contact_id = $this->_contactID;
86 }
87
88 $settings = Civi::settings();
89 foreach ($this->_varNames as $groupName => $settingNames) {
90 foreach ($settingNames as $settingName => $options) {
91 $this->_config->$settingName = $settings->get($settingName);
92 }
93 }
94 $session->pushUserContext(CRM_Utils_System::url('civicrm/admin', 'reset=1'));
95 }
96
97 /**
98 * @return array
99 */
100 public function setDefaultValues() {
101 $defaults = array();
102
103 foreach ($this->_varNames as $groupName => $settings) {
104 foreach ($settings as $settingName => $settingDetails) {
105 $defaults[$settingName] = isset($this->_config->$settingName) ? $this->_config->$settingName : CRM_Utils_Array::value('default', $settingDetails, NULL);
106 }
107 }
108
109 return $defaults;
110 }
111
112 /**
113 * @param $defaults
114 */
115 public function cbsDefaultValues(&$defaults) {
116
117 foreach ($this->_varNames as $groupName => $groupValues) {
118 foreach ($groupValues as $settingName => $fieldValue) {
119 if ($fieldValue['html_type'] == 'checkboxes') {
120 if (isset($this->_config->$settingName) &&
121 $this->_config->$settingName
122 ) {
123 $value = explode(CRM_Core_DAO::VALUE_SEPARATOR,
124 substr($this->_config->$settingName, 1, -1)
125 );
126 if (!empty($value)) {
127 $defaults[$settingName] = array();
128 foreach ($value as $n => $v) {
129 $defaults[$settingName][$v] = 1;
130 }
131 }
132 }
133 }
134 }
135 }
136 }
137
138 /**
139 * Build the form object.
140 */
141 public function buildQuickForm() {
142 parent::buildQuickForm();
143
144 if (!empty($this->_varNames)) {
145 foreach ($this->_varNames as $groupName => $groupValues) {
146 $formName = CRM_Utils_String::titleToVar($groupName);
147 $this->assign('formName', $formName);
148 $fields = array();
149 foreach ($groupValues as $fieldName => $fieldValue) {
150 $fields[$fieldName] = $fieldValue;
151
152 switch ($fieldValue['html_type']) {
153 case 'text':
154 $this->addElement('text',
155 $fieldName,
156 $fieldValue['title'],
157 array(
158 'maxlength' => 64,
159 'size' => 32,
160 )
161 );
162 break;
163
164 case 'textarea':
165 case 'checkbox':
166 $this->add($fieldValue['html_type'],
167 $fieldName,
168 $fieldValue['title']
169 );
170 break;
171
172 case 'radio':
173 $options = CRM_Core_OptionGroup::values($fieldName, FALSE, FALSE, TRUE);
174 $this->addRadio($fieldName, $fieldValue['title'], $options, NULL, '&nbsp;&nbsp;');
175 break;
176
177 case 'YesNo':
178 $this->addRadio($fieldName, $fieldValue['title'], array(0 => 'No', 1 => 'Yes'), NULL, '&nbsp;&nbsp;');
179 break;
180
181 case 'checkboxes':
182 $options = array_flip(CRM_Core_OptionGroup::values($fieldName, FALSE, FALSE, TRUE));
183 $newOptions = array();
184 foreach ($options as $key => $val) {
185 $newOptions[$key] = $val;
186 }
187 $this->addCheckBox($fieldName,
188 $fieldValue['title'],
189 $newOptions,
190 NULL, NULL, NULL, NULL,
191 array('&nbsp;&nbsp;', '&nbsp;&nbsp;', '<br/>')
192 );
193 break;
194
195 case 'select':
196 $this->addElement('select',
197 $fieldName,
198 $fieldValue['title'],
199 $fieldValue['option_values']
200 );
201 break;
202
203 case 'wysiwyg':
204 $this->add('wysiwyg', $fieldName, $fieldValue['title'], $fieldValue['attributes']);
205 break;
206
207 case 'entity_reference':
208 $this->addEntityRef($fieldName, $fieldValue['title'], CRM_Utils_Array::value('options', $fieldValue, array()));
209 }
210 }
211
212 $fields = CRM_Utils_Array::crmArraySortByField($fields, 'weight');
213 $this->assign('fields', $fields);
214 }
215 }
216
217 $this->addButtons(array(
218 array(
219 'type' => 'next',
220 'name' => ts('Save'),
221 'isDefault' => TRUE,
222 ),
223 array(
224 'type' => 'cancel',
225 'name' => ts('Cancel'),
226 ),
227 )
228 );
229
230 if ($this->_action == CRM_Core_Action::VIEW) {
231 $this->freeze();
232 }
233 }
234
235 /**
236 * Process the form submission.
237 */
238 public function postProcess() {
239 $config = CRM_Core_Config::singleton();
240 if ($this->_action == CRM_Core_Action::VIEW) {
241 return;
242 }
243
244 $this->_params = $this->controller->exportValues($this->_name);
245
246 $this->postProcessCommon();
247 }
248
249 /**
250 * Process the form submission.
251 */
252 public function postProcessCommon() {
253 foreach ($this->_varNames as $groupName => $groupValues) {
254 foreach ($groupValues as $settingName => $fieldValue) {
255 switch ($fieldValue['html_type']) {
256 case 'checkboxes':
257 if (!empty($this->_params[$settingName]) &&
258 is_array($this->_params[$settingName])
259 ) {
260 $this->_config->$settingName = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR,
261 array_keys($this->_params[$settingName])
262 ) . CRM_Core_DAO::VALUE_SEPARATOR;
263 }
264 else {
265 $this->_config->$settingName = NULL;
266 }
267 break;
268
269 case 'checkbox':
270 $this->_config->$settingName = !empty($this->_params[$settingName]) ? 1 : 0;
271 break;
272
273 case 'text':
274 case 'select':
275 case 'radio':
276 case 'YesNo':
277 case 'entity_reference':
278 $this->_config->$settingName = CRM_Utils_Array::value($settingName, $this->_params);
279 break;
280
281 case 'textarea':
282 $value = CRM_Utils_Array::value($settingName, $this->_params);
283 if ($value) {
284 $value = trim($value);
285 $value = str_replace(array("\r\n", "\r"), "\n", $value);
286 }
287 $this->_config->$settingName = $value;
288 break;
289 }
290 }
291 }
292
293 foreach ($this->_varNames as $groupName => $groupValues) {
294 foreach ($groupValues as $settingName => $fieldValue) {
295 $settingValue = isset($this->_config->$settingName) ? $this->_config->$settingName : NULL;
296 Civi::settings()->set($settingName, $settingValue);
297 }
298 }
299 // Update any settings stored in dynamic js
300 CRM_Core_Resources::singleton()->resetCacheCode();
301
302 CRM_Core_Session::setStatus(ts('Your changes have been saved.'), ts('Saved'), 'success');
303 }
304
305 }