CRM_Core_BAO_Setting::getItem() - Fix calls which use deprecated parameters
[civicrm-core.git] / CRM / Admin / Form / Setting.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 */
33
34/**
ce064e4f 35 * This class generates form components generic to CiviCRM settings.
6a488035
TO
36 */
37class CRM_Admin_Form_Setting extends CRM_Core_Form {
38
6a488035
TO
39 protected $_settings = array();
40
41 /**
c490a46a 42 * Set default values for the form.
6a488035 43 *
ee0ce2ef 44 * Default values are retrieved from the database.
6a488035 45 */
00be9182 46 public function setDefaultValues() {
6a488035
TO
47 if (!$this->_defaults) {
48 $this->_defaults = array();
353ffa53
TO
49 $formArray = array('Component', 'Localization');
50 $formMode = FALSE;
6a488035
TO
51 if (in_array($this->_name, $formArray)) {
52 $formMode = TRUE;
53 }
54
55 CRM_Core_BAO_ConfigSetting::retrieve($this->_defaults);
56
57 CRM_Core_Config_Defaults::setValues($this->_defaults, $formMode);
58
59 $list = array_flip(CRM_Core_OptionGroup::values('contact_autocomplete_options',
353ffa53
TO
60 FALSE, FALSE, TRUE, NULL, 'name'
61 ));
6a488035
TO
62
63 $cRlist = array_flip(CRM_Core_OptionGroup::values('contact_reference_options',
353ffa53
TO
64 FALSE, FALSE, TRUE, NULL, 'name'
65 ));
6a488035
TO
66
67 $listEnabled = CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
68 'contact_autocomplete_options'
69 );
70 $cRlistEnabled = CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
71 'contact_reference_options'
72 );
73
74 $autoSearchFields = array();
75 if (!empty($list) && !empty($listEnabled)) {
76 $autoSearchFields = array_combine($list, $listEnabled);
77 }
78
79 $cRSearchFields = array();
80 if (!empty($cRlist) && !empty($cRlistEnabled)) {
81 $cRSearchFields = array_combine($cRlist, $cRlistEnabled);
82 }
83
84 //Set defaults for autocomplete and contact reference options
85 $this->_defaults['autocompleteContactSearch'] = array(
5c9ff055
EM
86 '1' => 1,
87 ) + $autoSearchFields;
6a488035 88 $this->_defaults['autocompleteContactReference'] = array(
5c9ff055
EM
89 '1' => 1,
90 ) + $cRSearchFields;
6a488035
TO
91
92 // we can handle all the ones defined in the metadata here. Others to be converted
9b873358 93 foreach ($this->_settings as $setting => $group) {
6a488035
TO
94 $settingMetaData = civicrm_api('setting', 'getfields', array('version' => 3, 'name' => $setting));
95 $this->_defaults[$setting] = civicrm_api('setting', 'getvalue', array(
353ffa53
TO
96 'version' => 3,
97 'name' => $setting,
98 'group' => $group,
99 'default_value' => CRM_Utils_Array::value('default', $settingMetaData['values'][$setting]),
6a488035
TO
100 )
101 );
102 }
103
d356cdeb
TO
104 $this->_defaults['enableSSL'] = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'enableSSL');
105 $this->_defaults['verifySSL'] = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'verifySSL');
6a488035
TO
106 }
107
108 return $this->_defaults;
109 }
110
111 /**
567b2076 112 * Build the form object.
6a488035
TO
113 */
114 public function buildQuickForm() {
115 $session = CRM_Core_Session::singleton();
116 $session->pushUserContext(CRM_Utils_System::url('civicrm/admin', 'reset=1'));
117 $args = func_get_args();
118 $check = reset($args);
119 $this->addButtons(array(
120 array(
121 'type' => 'next',
122 'name' => ts('Save'),
123 'isDefault' => TRUE,
124 ),
125 array(
126 'type' => 'cancel',
127 'name' => ts('Cancel'),
128 ),
129 )
130 );
131
9b873358 132 foreach ($this->_settings as $setting => $group) {
6a488035 133 $settingMetaData = civicrm_api('setting', 'getfields', array('version' => 3, 'name' => $setting));
fa8dc18c 134 $props = $settingMetaData['values'][$setting];
9b873358 135 if (isset($props['quick_form_type'])) {
fa8dc18c 136 $add = 'add' . $props['quick_form_type'];
9b873358 137 if ($add == 'addElement') {
6a488035 138 $this->$add(
fa8dc18c 139 $props['html_type'],
6a488035 140 $setting,
fa8dc18c
CW
141 ts($props['title']),
142 CRM_Utils_Array::value($props['html_type'] == 'select' ? 'option_values' : 'html_attributes', $props, array()),
143 $props['html_type'] == 'select' ? CRM_Utils_Array::value('html_attributes', $props) : NULL
6a488035
TO
144 );
145 }
52b03498
TO
146 elseif ($add == 'addSelect') {
147 $options = civicrm_api3('Setting', 'getoptions', array(
148 'field' => $setting,
149 ));
150 $this->addElement('select', $setting, ts($props['title']), $options['values'], CRM_Utils_Array::value('html_attributes', $props));
151 }
92e4c2a5 152 else {
fa8dc18c 153 $this->$add($setting, ts($props['title']));
6a488035 154 }
fa8dc18c 155 $this->assign("{$setting}_description", ts($props['description']));
9b873358 156 if ($setting == 'max_attachments') {
6a488035
TO
157 //temp hack @todo fix to get from metadata
158 $this->addRule('max_attachments', ts('Value should be a positive number'), 'positiveInteger');
159 }
9b873358 160 if ($setting == 'maxFileSize') {
6a488035
TO
161 //temp hack
162 $this->addRule('maxFileSize', ts('Value should be a positive number'), 'positiveInteger');
163 }
164
165 }
166 }
167 }
168
ce064e4f 169 /**
170 * Get default entity.
171 *
172 * @return string
173 */
52b03498
TO
174 public function getDefaultEntity() {
175 return 'Setting';
176 }
177
6a488035 178 /**
ee0ce2ef 179 * Process the form submission.
6a488035
TO
180 */
181 public function postProcess() {
182 // store the submitted values in an array
183 $params = $this->controller->exportValues($this->_name);
184
185 self::commonProcess($params);
186 }
187
e0ef6999 188 /**
5c9ff055
EM
189 * Common Process.
190 *
191 * @todo Document what I do.
192 *
c490a46a 193 * @param array $params
e0ef6999 194 */
6a488035
TO
195 public function commonProcess(&$params) {
196
197 // save autocomplete search options
a7488080 198 if (!empty($params['autocompleteContactSearch'])) {
6a488035 199 $value = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR,
353ffa53
TO
200 array_keys($params['autocompleteContactSearch'])
201 ) . CRM_Core_DAO::VALUE_SEPARATOR;
6a488035
TO
202
203 CRM_Core_BAO_Setting::setItem($value,
204 CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
205 'contact_autocomplete_options'
206 );
207
208 unset($params['autocompleteContactSearch']);
209 }
210
211 // save autocomplete contact reference options
a7488080 212 if (!empty($params['autocompleteContactReference'])) {
6a488035 213 $value = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR,
353ffa53
TO
214 array_keys($params['autocompleteContactReference'])
215 ) . CRM_Core_DAO::VALUE_SEPARATOR;
6a488035
TO
216
217 CRM_Core_BAO_Setting::setItem($value,
218 CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
219 'contact_reference_options'
220 );
221
222 unset($params['autocompleteContactReference']);
223 }
224
2efcf0c2 225 // save components to be enabled
9dda9790 226 if (array_key_exists('enableComponents', $params)) {
c8074a93
TO
227 civicrm_api3('setting', 'create', array(
228 'enable_components' => $params['enableComponents'],
229 ));
230 unset($params['enableComponents']);
3124edb3
DS
231 }
232
6a488035 233 // save checksum timeout
a7488080 234 if (!empty($params['checksumTimeout'])) {
6a488035
TO
235 CRM_Core_BAO_Setting::setItem($params['checksumTimeout'],
236 CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
237 'checksum_timeout'
238 );
239 }
240
6a488035
TO
241 // verify ssl peer option
242 if (isset($params['verifySSL'])) {
243 CRM_Core_BAO_Setting::setItem($params['verifySSL'],
244 CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
245 'verifySSL'
246 );
247 unset($params['verifySSL']);
248 }
249
250 // force secure URLs
251 if (isset($params['enableSSL'])) {
252 CRM_Core_BAO_Setting::setItem($params['enableSSL'],
253 CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
254 'enableSSL'
255 );
256 unset($params['enableSSL']);
257 }
258 $settings = array_intersect_key($params, $this->_settings);
259 $result = civicrm_api('setting', 'create', $settings + array('version' => 3));
9b873358 260 foreach ($settings as $setting => $settingGroup) {
6a488035
TO
261 //@todo array_diff this
262 unset($params[$setting]);
263 }
af962699
TO
264 if (!empty($result['error_message'])) {
265 CRM_Core_Session::setStatus($result['error_message'], ts('Save Failed'), 'error');
266 }
267
6a488035 268 CRM_Core_BAO_ConfigSetting::create($params);
b08fb110
CW
269
270 CRM_Core_Config::clearDBCache();
271 CRM_Utils_System::flushCache();
272 CRM_Core_Resources::singleton()->resetCacheCode();
273
4481526f 274 CRM_Core_Session::setStatus(" ", ts('Changes Saved'), "success");
6a488035
TO
275 }
276
277 public function rebuildMenu() {
278 // ensure config is set with new values
279 $config = CRM_Core_Config::singleton(TRUE, TRUE);
280
281 // rebuild menu items
282 CRM_Core_Menu::store();
283
284 // also delete the IDS file so we can write a new correct one on next load
285 $configFile = $config->uploadDir . 'Config.IDS.ini';
286 @unlink($configFile);
287 }
96025800 288
6a488035 289}