@@ -46,7 +46,8 @@ discard block |
||
46 | 46 | $object = self::_load_backend($backend, $params); |
47 | 47 | debug_add('Using backend ' . $backend); |
48 | 48 | return $object; |
49 | - } catch (midcom_error $e) { |
|
49 | + } |
|
50 | + catch (midcom_error $e) { |
|
50 | 51 | debug_add('Failed to load backend ' . $backend . ', message:' . $e->getMessage()); |
51 | 52 | } |
52 | 53 | } |
@@ -76,7 +77,8 @@ discard block |
||
76 | 77 | $this->mail($message); |
77 | 78 | $this->error = null; |
78 | 79 | return true; |
79 | - } catch (Exception $e) { |
|
80 | + } |
|
81 | + catch (Exception $e) { |
|
80 | 82 | $this->error = $e->getMessage(); |
81 | 83 | return false; |
82 | 84 | } |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | |
237 | 237 | private function _convert_to_localdata() : string |
238 | 238 | { |
239 | - return "var " . $this->_grid->get_identifier() . '_entries = ' . json_encode($this->get_rows()) . ";\n"; |
|
239 | + return "var " . $this->_grid->get_identifier() . '_entries = ' . json_encode($this->get_rows()) . ";\n"; |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | private function _render_json() |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | $this->_sort_field = $query['sidx']; |
270 | 270 | $this->_sort_direction = strtoupper($query['sord'] ?? 'ASC'); |
271 | 271 | } |
272 | - if ( !empty($query['_search']) |
|
272 | + if (!empty($query['_search']) |
|
273 | 273 | && $query['_search'] === 'true') { |
274 | 274 | foreach ($query as $field => $value) { |
275 | 275 | if (in_array($field, ['_search', 'nd', 'page', 'rows', 'sidx', 'sord'])) { |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | |
295 | 295 | $this->_total_rows = $query->count(); |
296 | 296 | |
297 | - if ( $this->_datatype == 'json' |
|
297 | + if ($this->_datatype == 'json' |
|
298 | 298 | && !empty($this->_results_per_page)) { |
299 | 299 | $query->set_limit($this->_results_per_page); |
300 | 300 | if (!empty($this->_offset)) { |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | $contacts = $importer->parse($input); |
143 | 143 | if (!empty($contacts)) { |
144 | 144 | $this->_request_data['import_status'] = $importer->import_subscribers($contacts, $this->_request_data['campaign']); |
145 | - if ( $this->_request_data['import_status']['subscribed_new'] > 0 |
|
145 | + if ($this->_request_data['import_status']['subscribed_new'] > 0 |
|
146 | 146 | || $this->_request_data['import_status']['already_subscribed'] > 0) { |
147 | 147 | $this->_import_success = true; |
148 | 148 | } |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | $read_rows = 0; |
200 | 200 | $handle = fopen($data['tmp_file'], 'r'); |
201 | 201 | $total_columns = 0; |
202 | - while ( $read_rows < 2 |
|
202 | + while ($read_rows < 2 |
|
203 | 203 | && $csv_line = fgetcsv($handle, 1000, $data['separator'])) { |
204 | 204 | if ($total_columns == 0) { |
205 | 205 | $total_columns = count($csv_line); |
@@ -90,7 +90,7 @@ |
||
90 | 90 | |
91 | 91 | $this->_controller = $this->load_controller(); |
92 | 92 | |
93 | - if ( $data['enable_versioning'] |
|
93 | + if ($data['enable_versioning'] |
|
94 | 94 | && $request->request->count() > 0) { |
95 | 95 | $this->_backup_attachment($request); |
96 | 96 | } |
@@ -67,7 +67,7 @@ |
||
67 | 67 | $user = midcom::get()->auth->user->get_storage(); |
68 | 68 | |
69 | 69 | if ($request->request->get('unset_filter') == $filter_id) { |
70 | - if ( $user->get_parameter("org_openpsa_core_filter", $filter_id) |
|
70 | + if ($user->get_parameter("org_openpsa_core_filter", $filter_id) |
|
71 | 71 | && !$user->delete_parameter("org_openpsa_core_filter", $filter_id)) { |
72 | 72 | $message_content = sprintf( |
73 | 73 | $l10n->get('the handed filter for %s could not be set as parameter'), |
@@ -50,7 +50,8 @@ |
||
50 | 50 | try { |
51 | 51 | \midgard_object_class::get_object_by_guid($priv->objectguid); |
52 | 52 | $seen_parents[$priv->objectguid] = true; |
53 | - } catch (\Exception $e) { |
|
53 | + } |
|
54 | + catch (\Exception $e) { |
|
54 | 55 | $seen_parents[$priv->objectguid] = false; |
55 | 56 | } |
56 | 57 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | $workflow = $this->get_workflow('datamanager', ['controller' => $data['controller']]); |
45 | 45 | $response = $workflow->run($request); |
46 | 46 | |
47 | - if ( $workflow->get_state() == 'save' |
|
47 | + if ($workflow->get_state() == 'save' |
|
48 | 48 | && $this->create_account($this->person, $data["controller"]->get_form_values())) { |
49 | 49 | midcom::get()->uimessages->add($this->_l10n->get('org.openpsa.user'), sprintf($this->_l10n->get('person %s created'), $this->person->name)); |
50 | 50 | } |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | $person = new midcom_db_person($guid); |
78 | 78 | $accounthelper = new org_openpsa_user_accounthelper($person); |
79 | 79 | if ($accounthelper->welcome_email()) { |
80 | - midcom::get()->uimessages->add($this->_l10n->get($this->_component), sprintf($this->_l10n->get('password reset and mail to %s sent'), $person->email )); |
|
80 | + midcom::get()->uimessages->add($this->_l10n->get($this->_component), sprintf($this->_l10n->get('password reset and mail to %s sent'), $person->email)); |
|
81 | 81 | } else { |
82 | 82 | midcom::get()->uimessages->add($this->_l10n->get($this->_component), $accounthelper->errstr, 'error'); |
83 | 83 | } |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | $accounthelper = new org_openpsa_user_accounthelper($this->person); |
134 | 134 | |
135 | 135 | // Update account |
136 | - if ( !$accounthelper->set_account($controller->get_form_values()["username"], $password) |
|
136 | + if (!$accounthelper->set_account($controller->get_form_values()["username"], $password) |
|
137 | 137 | && midcom_connection::get_error() != MGD_ERR_OK) { |
138 | 138 | // Failure, give a message |
139 | 139 | midcom::get()->uimessages->add($this->_l10n->get('org.openpsa.user'), $this->_l10n->get("failed to update the user account, reason") . ': ' . midcom_connection::get_error_string(), 'error'); |
@@ -270,7 +270,7 @@ discard block |
||
270 | 270 | */ |
271 | 271 | private function add_misc_rule(array $rule, string $class, string $person_property) |
272 | 272 | { |
273 | - $persons = [ 0 => -1]; |
|
273 | + $persons = [0 => -1]; |
|
274 | 274 | $match = $rule['match']; |
275 | 275 | $constraint_match = "IN"; |
276 | 276 | if ($rule['match'] == '<>') { |
@@ -342,7 +342,7 @@ discard block |
||
342 | 342 | $ret = []; |
343 | 343 | |
344 | 344 | foreach ($object->get_properties() as $property) { |
345 | - if ( $property[0] == '_' |
|
345 | + if ($property[0] == '_' |
|
346 | 346 | || in_array($property, $skip_properties)) { |
347 | 347 | // Skip private or otherwise invalid properties |
348 | 348 | continue; |
@@ -110,7 +110,8 @@ discard block |
||
110 | 110 | try { |
111 | 111 | $this->process_classes($rules['classes'], $rules['type']); |
112 | 112 | return true; |
113 | - } catch (midcom_error $e) { |
|
113 | + } |
|
114 | + catch (midcom_error $e) { |
|
114 | 115 | $e->log(); |
115 | 116 | return false; |
116 | 117 | } |
@@ -225,7 +226,8 @@ discard block |
||
225 | 226 | $guid = $mc_parameter->get_subkey($parameter_key, 'parentguid'); |
226 | 227 | try { |
227 | 228 | $parent = midcom::get()->dbfactory->get_object_by_guid($guid); |
228 | - } catch (midcom_error $e) { |
|
229 | + } |
|
230 | + catch (midcom_error $e) { |
|
229 | 231 | $e->log(); |
230 | 232 | continue; |
231 | 233 | } |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | $this->_user_id = midcom::get()->auth->acl->get_user_id(); |
103 | 103 | } |
104 | 104 | |
105 | - if ( $this->hide_invisible |
|
105 | + if ($this->hide_invisible |
|
106 | 106 | && !$this->_visibility_checks_added) { |
107 | 107 | if (!midcom::get()->config->get('show_hidden_objects')) { |
108 | 108 | $this->add_constraint('metadata.hidden', '=', false); |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | // Deal with empty arrays, which would produce invalid queries |
169 | 169 | // This is done here to avoid repetitive code in callers, and because |
170 | 170 | // it's easy enough to generalize: IN empty set => always false, NOT IN empty set => always true |
171 | - if ( is_array($value) |
|
171 | + if (is_array($value) |
|
172 | 172 | && empty($value)) { |
173 | 173 | if ($operator == 'NOT IN') { |
174 | 174 | return; |