replace element with advmultiselect
[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 'advmultiselect':
204 $this->addElement('advmultiselect', $fieldName, $fieldValue['title'], $fieldValue['options'], $fieldValue['attributes']);
205 break;
206
207 case 'wysiwyg':
208 $this->add('wysiwyg', $fieldName, $fieldValue['title'], $fieldValue['attributes']);
209 break;
210
211 case 'entity_reference':
212 $this->addEntityRef($fieldName, $fieldValue['title'], CRM_Utils_Array::value('options', $fieldValue, array()));
213 }
214 }
215
216 $fields = CRM_Utils_Array::crmArraySortByField($fields, 'weight');
217 $this->assign('fields', $fields);
218 }
219 }
220
221 $this->addButtons(array(
222 array(
223 'type' => 'next',
224 'name' => ts('Save'),
225 'isDefault' => TRUE,
226 ),
227 array(
228 'type' => 'cancel',
229 'name' => ts('Cancel'),
230 ),
231 )
232 );
233
234 if ($this->_action == CRM_Core_Action::VIEW) {
235 $this->freeze();
236 }
237 }
238
239 /**
240 * Process the form submission.
241 */
242 public function postProcess() {
243 $config = CRM_Core_Config::singleton();
244 if ($this->_action == CRM_Core_Action::VIEW) {
245 return;
246 }
247
248 $this->_params = $this->controller->exportValues($this->_name);
249
250 $this->postProcessCommon();
251 }
252
253 /**
254 * Process the form submission.
255 */
256 public function postProcessCommon() {
257 foreach ($this->_varNames as $groupName => $groupValues) {
258 foreach ($groupValues as $settingName => $fieldValue) {
259 switch ($fieldValue['html_type']) {
260 case 'checkboxes':
261 if (!empty($this->_params[$settingName]) &&
262 is_array($this->_params[$settingName])
263 ) {
264 $this->_config->$settingName = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR,
265 array_keys($this->_params[$settingName])
266 ) . CRM_Core_DAO::VALUE_SEPARATOR;
267 }
268 else {
269 $this->_config->$settingName = NULL;
270 }
271 break;
272
273 case 'checkbox':
274 $this->_config->$settingName = !empty($this->_params[$settingName]) ? 1 : 0;
275 break;
276
277 case 'text':
278 case 'select':
279 case 'advmultiselect':
280 case 'radio':
281 case 'YesNo':
282 case 'entity_reference':
283 $this->_config->$settingName = CRM_Utils_Array::value($settingName, $this->_params);
284 break;
285
286 case 'textarea':
287 $value = CRM_Utils_Array::value($settingName, $this->_params);
288 if ($value) {
289 $value = trim($value);
290 $value = str_replace(array("\r\n", "\r"), "\n", $value);
291 }
292 $this->_config->$settingName = $value;
293 break;
294 }
295 }
296 }
297
298 foreach ($this->_varNames as $groupName => $groupValues) {
299 foreach ($groupValues as $settingName => $fieldValue) {
300 $settingValue = isset($this->_config->$settingName) ? $this->_config->$settingName : NULL;
301 Civi::settings()->set($settingName, $settingValue);
302 }
303 }
304 // Update any settings stored in dynamic js
305 CRM_Core_Resources::singleton()->resetCacheCode();
306
307 CRM_Core_Session::setStatus(ts('Your changes have been saved.'), ts('Saved'), 'success');
308 }
309
310 }