@@ -30,11 +30,11 @@ |
||
30 | 30 | $object = $dm->get_storage()->get_value(); |
31 | 31 | |
32 | 32 | $document = $indexer->new_document($dm); |
33 | - if ( $config->get('enable_scheduling') |
|
33 | + if ($config->get('enable_scheduling') |
|
34 | 34 | && $object instanceof org_openpsa_products_product_dba) { |
35 | 35 | // Check start/end for products |
36 | - if ( $object->start > time() |
|
37 | - || ( $object->end != 0 |
|
36 | + if ($object->start > time() |
|
37 | + || ($object->end != 0 |
|
38 | 38 | && $object->end < time())) { |
39 | 39 | // Not in market, remove from index |
40 | 40 | $indexer->delete($document->RI); |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | |
162 | 162 | $parent = $object->get_parent(); |
163 | 163 | |
164 | - if ( $object instanceof midcom_db_parameter |
|
164 | + if ($object instanceof midcom_db_parameter |
|
165 | 165 | && !empty($parent->guid)) { |
166 | 166 | // Add "parameters" list to breadcrumb if we're in a param |
167 | 167 | $breadcrumb[] = [ |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | } |
172 | 172 | |
173 | 173 | $i = 0; |
174 | - while ( !empty($parent->guid) |
|
174 | + while (!empty($parent->guid) |
|
175 | 175 | && $i < 10) { |
176 | 176 | $i++; |
177 | 177 | $parent_reflector = midcom_helper_reflector::get($parent); |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | $this->_component = 'midgard.admin.asgard'; |
42 | 42 | |
43 | 43 | $this->_object = $object; |
44 | - $this->_request_data =& $request_data; |
|
44 | + $this->_request_data = & $request_data; |
|
45 | 45 | |
46 | 46 | $this->root_types = midcom_helper_reflector_tree::get_root_classes(); |
47 | 47 | |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | // we go through the path bottom up and show the first root type we find |
58 | 58 | foreach (array_reverse($this->_object_path) as $node) { |
59 | 59 | foreach ($this->root_types as $root_type) { |
60 | - if ( $node instanceof $root_type |
|
60 | + if ($node instanceof $root_type |
|
61 | 61 | || midcom_helper_reflector::is_same_class($root_type, $node->__midcom_class_name__)) { |
62 | 62 | $this->expanded_root_types[] = $root_type; |
63 | 63 | break; |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | |
70 | 70 | protected function _is_collapsed(string $type, int $total) : bool |
71 | 71 | { |
72 | - return ( $total > $this->_config->get('max_navigation_entries') |
|
72 | + return ($total > $this->_config->get('max_navigation_entries') |
|
73 | 73 | && empty($_GET['show_all_' . $type])); |
74 | 74 | } |
75 | 75 | |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | foreach ($ref->get_child_classes() as $class) { |
86 | 86 | $qb = $ref->_child_objects_type_qb($class, $object, false); |
87 | 87 | |
88 | - if ( !$qb |
|
88 | + if (!$qb |
|
89 | 89 | || !($count = $qb->count_unchecked())) { |
90 | 90 | continue; |
91 | 91 | } |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | { |
132 | 132 | $qb = $ref->_root_objects_qb(); |
133 | 133 | |
134 | - if ( !$qb |
|
134 | + if (!$qb |
|
135 | 135 | || !($total = $qb->count_unchecked())) { |
136 | 136 | return; |
137 | 137 | } |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | } |
210 | 210 | |
211 | 211 | echo "<a href=\"" . midcom_connection::get_url('self') . "__mfa/asgard/object/{$mode}/{$object->guid}/\" title=\"GUID: {$object->guid}, ID: {$object->id}\">{$icon}{$label}</a>\n"; |
212 | - if ( $selected |
|
212 | + if ($selected |
|
213 | 213 | || $autoexpand) { |
214 | 214 | $this->_list_child_elements($object, $level + 1); |
215 | 215 | } |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | continue; |
230 | 230 | } |
231 | 231 | |
232 | - if ( method_exists($class, 'navigation') |
|
232 | + if (method_exists($class, 'navigation') |
|
233 | 233 | && ($this->_request_data['plugin_name'] == "asgard_{$component}")) { |
234 | 234 | $this->_request_data['expanded'] = true; |
235 | 235 | midcom_show_style('midgard_admin_asgard_navigation_section_header'); |
@@ -263,13 +263,13 @@ discard block |
||
263 | 263 | if ($this->_is_selected($object)) { |
264 | 264 | $css_class .= ' selected'; |
265 | 265 | } |
266 | - if ( is_object($this->_object) |
|
267 | - && ( $object->guid == $this->_object->guid |
|
268 | - || ( $this->_object instanceof midcom_db_parameter |
|
266 | + if (is_object($this->_object) |
|
267 | + && ($object->guid == $this->_object->guid |
|
268 | + || ($this->_object instanceof midcom_db_parameter |
|
269 | 269 | && $object->guid == $this->_object->parentguid))) { |
270 | 270 | $css_class .= ' current'; |
271 | 271 | } |
272 | - if ( !$object->can_do('midgard:update')) { |
|
272 | + if (!$object->can_do('midgard:update')) { |
|
273 | 273 | $css_class .= ' readonly'; |
274 | 274 | } |
275 | 275 | return $css_class; |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | // Get the types that might have special display conditions |
291 | 291 | // @TODO: Should this just include to the configuration selection, although it would break the consistency |
292 | 292 | // of other similar preference sets, which simply override the global settings? |
293 | - if ( ($selected = midgard_admin_asgard_plugin::get_preference('midgard_types')) |
|
293 | + if (($selected = midgard_admin_asgard_plugin::get_preference('midgard_types')) |
|
294 | 294 | && preg_match_all('/\|([a-z0-9\.\-_]+)/', $selected, $regs)) { |
295 | 295 | $types = array_flip($regs[1]); |
296 | 296 | if ($exclude) { |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | } |
309 | 309 | |
310 | 310 | // If the regular expression has been set, check which types should be shown |
311 | - $label_mapping = array_filter($label_mapping, function ($root_type) use ($regexp, $exclude) { |
|
311 | + $label_mapping = array_filter($label_mapping, function($root_type) use ($regexp, $exclude) { |
|
312 | 312 | return preg_match($regexp, $root_type) == $exclude; |
313 | 313 | }, ARRAY_FILTER_USE_KEY); |
314 | 314 | } |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | * click if nothing is expanded |
339 | 339 | */ |
340 | 340 | $types_shown = false; |
341 | - if ( !empty($expanded_types) |
|
341 | + if (!empty($expanded_types) |
|
342 | 342 | && midgard_admin_asgard_plugin::get_preference('navigation_type') === 'dropdown') { |
343 | 343 | $this->_draw_select_navigation(); |
344 | 344 | $types_shown = true; |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | $tmp = $this->_object; |
83 | 83 | |
84 | 84 | $i = 0; |
85 | - while ( !empty($tmp->guid) |
|
85 | + while (!empty($tmp->guid) |
|
86 | 86 | && !($tmp instanceof midcom_db_topic) |
87 | 87 | && $i < 100) { |
88 | 88 | // Get the parent; wishing eventually to get a topic |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | |
128 | 128 | $assignees = $this->load_assignees(); |
129 | 129 | $this->process_assignees($assignees, $schemadb); |
130 | - $assignee_field =& $schemadb->get('privileges')->get_field('add_assignee'); |
|
130 | + $assignee_field = & $schemadb->get('privileges')->get_field('add_assignee'); |
|
131 | 131 | |
132 | 132 | if (!$this->additional_assignee) { |
133 | 133 | // Populate additional assignee selector |
@@ -23,7 +23,7 @@ |
||
23 | 23 | $temp = $request->files->get('file'); |
24 | 24 | |
25 | 25 | // Verify file extension |
26 | - if ( !$temp instanceof UploadedFile |
|
26 | + if (!$temp instanceof UploadedFile |
|
27 | 27 | || !in_array(strtolower($temp->getClientOriginalExtension()), ["gif", "jpg", "png"])) { |
28 | 28 | throw new midcom_error('Invalid extension.'); |
29 | 29 | } |
@@ -33,7 +33,8 @@ |
||
33 | 33 | $member->require_do('midgard:update'); |
34 | 34 | $member->extra = $request->request->get('title'); |
35 | 35 | $response['status'] = $member->update(); |
36 | - } catch (midcom_error $e) { |
|
36 | + } |
|
37 | + catch (midcom_error $e) { |
|
37 | 38 | $e->log(); |
38 | 39 | } |
39 | 40 | $response['message'] = midcom_connection::get_error_string(); |
@@ -116,7 +116,8 @@ discard block |
||
116 | 116 | //TODO: check for duplicates ? |
117 | 117 | try { |
118 | 118 | $result = ['other_obj' => midcom::get()->dbfactory->get_object_by_guid($link[$other . 'Guid'])]; |
119 | - } catch (midcom_error $e) { |
|
119 | + } |
|
120 | + catch (midcom_error $e) { |
|
120 | 121 | continue; |
121 | 122 | } |
122 | 123 | $result['link'] = [ |
@@ -403,7 +404,8 @@ discard block |
||
403 | 404 | if (!($this->_object instanceof org_openpsa_relatedto_dba)) { |
404 | 405 | $response['status'] = "method requires guid of a link object as an argument"; |
405 | 406 | } |
406 | - } catch (midcom_error $e) { |
|
407 | + } |
|
408 | + catch (midcom_error $e) { |
|
407 | 409 | $response['status'] = "error: " . $e->getMessage(); |
408 | 410 | } |
409 | 411 | |
@@ -424,7 +426,8 @@ discard block |
||
424 | 426 | $relation = new org_openpsa_relatedto_dba($guid); |
425 | 427 | $result = $relation->delete(); |
426 | 428 | $status = 'Last message: ' . midcom_connection::get_error_string(); |
427 | - } catch (midcom_error $e) { |
|
429 | + } |
|
430 | + catch (midcom_error $e) { |
|
428 | 431 | $result = false; |
429 | 432 | $status = "Object '{$guid}' could not be loaded, error:" . $e->getMessage(); |
430 | 433 | } |
@@ -196,10 +196,10 @@ |
||
196 | 196 | * |
197 | 197 | * @param array $link The necessary link information |
198 | 198 | */ |
199 | - private function _render_line(array $link, midcom_core_dbaobject &$other_obj) |
|
199 | + private function _render_line(array $link, midcom_core_dbaobject & $other_obj) |
|
200 | 200 | { |
201 | 201 | $this->_request_data['link'] = $link; |
202 | - $this->_request_data['other_obj'] =& $other_obj; |
|
202 | + $this->_request_data['other_obj'] = & $other_obj; |
|
203 | 203 | $this->_request_data['icon'] = midcom_helper_reflector::get_object_icon($other_obj); |
204 | 204 | |
205 | 205 | if (get_class($other_obj) != $link['class']) { |
@@ -171,7 +171,7 @@ |
||
171 | 171 | if (!empty($field->vars['value'])) { |
172 | 172 | //only index the first attachment for now |
173 | 173 | $attachment = array_shift($field->vars['value']); |
174 | - if ( !$attachment instanceof \midcom_db_attachment |
|
174 | + if (!$attachment instanceof \midcom_db_attachment |
|
175 | 175 | && !empty($attachment['object'])) { |
176 | 176 | //This is the form edit case |
177 | 177 | //@todo: In create case, nothing is found currently |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | |
341 | 341 | $item = array_replace($defaults, $item); |
342 | 342 | |
343 | - if ( !empty($item[MIDCOM_TOOLBAR_ACCESSKEY]) |
|
343 | + if (!empty($item[MIDCOM_TOOLBAR_ACCESSKEY]) |
|
344 | 344 | && !array_key_exists($item[MIDCOM_TOOLBAR_ACCESSKEY], $used_access_keys)) { |
345 | 345 | // We have valid access key, add it to help text |
346 | 346 | $prefix = 'Alt-'; |
@@ -365,7 +365,7 @@ discard block |
||
365 | 365 | private function set_url(array &$item, string $url) |
366 | 366 | { |
367 | 367 | $item[MIDCOM_TOOLBAR__ORIGINAL_URL] = $url; |
368 | - if ( ( empty($item[MIDCOM_TOOLBAR_OPTIONS]["rel"]) |
|
368 | + if ((empty($item[MIDCOM_TOOLBAR_OPTIONS]["rel"]) |
|
369 | 369 | // Some items may want to keep their links unmutilated |
370 | 370 | || $item[MIDCOM_TOOLBAR_OPTIONS]["rel"] != "directlink") |
371 | 371 | && !str_starts_with($url, '/') |
@@ -390,7 +390,7 @@ discard block |
||
390 | 390 | |
391 | 391 | if ($index == 0) { |
392 | 392 | array_shift($this->items); |
393 | - } elseif ($index == count($this->items) -1) { |
|
393 | + } elseif ($index == count($this->items) - 1) { |
|
394 | 394 | array_pop($this->items); |
395 | 395 | } else { |
396 | 396 | $this->items = array_merge(array_slice($this->items, 0, $index), |
@@ -513,7 +513,7 @@ discard block |
||
513 | 513 | */ |
514 | 514 | public function render() : string |
515 | 515 | { |
516 | - $visible_items = array_filter($this->items, function ($item) { |
|
516 | + $visible_items = array_filter($this->items, function($item) { |
|
517 | 517 | return !$item[MIDCOM_TOOLBAR_HIDDEN]; |
518 | 518 | }); |
519 | 519 | $this->rendered = true; |
@@ -576,7 +576,7 @@ discard block |
||
576 | 576 | // Try finding uppercase version of the accesskey first |
577 | 577 | $accesskey = strtoupper($item[MIDCOM_TOOLBAR_ACCESSKEY]); |
578 | 578 | $position = strpos($label, $accesskey); |
579 | - if ( $position === false |
|
579 | + if ($position === false |
|
580 | 580 | && midcom::get()->i18n->get_current_language() == 'en') { |
581 | 581 | // Try lowercase, too |
582 | 582 | $accesskey = strtolower($accesskey); |
@@ -636,7 +636,7 @@ discard block |
||
636 | 636 | $attributes['title'] = $item[MIDCOM_TOOLBAR_HELPTEXT]; |
637 | 637 | } |
638 | 638 | |
639 | - if ( $item[MIDCOM_TOOLBAR_ENABLED] |
|
639 | + if ($item[MIDCOM_TOOLBAR_ENABLED] |
|
640 | 640 | && $item[MIDCOM_TOOLBAR_ACCESSKEY] !== null) { |
641 | 641 | $attributes['class'] = 'accesskey'; |
642 | 642 | $attributes['accesskey'] = $item[MIDCOM_TOOLBAR_ACCESSKEY]; |
@@ -699,7 +699,7 @@ discard block |
||
699 | 699 | public function get_index_from_url(string $url) : ?int |
700 | 700 | { |
701 | 701 | foreach ($this->items as $i => $item) { |
702 | - if ( $item[MIDCOM_TOOLBAR_URL] == $url |
|
702 | + if ($item[MIDCOM_TOOLBAR_URL] == $url |
|
703 | 703 | || $item[MIDCOM_TOOLBAR__ORIGINAL_URL] == $url) { |
704 | 704 | return $i; |
705 | 705 | } |
@@ -717,7 +717,7 @@ discard block |
||
717 | 717 | * |
718 | 718 | * @param mixed $index The integer index or URL to check |
719 | 719 | */ |
720 | - protected function _check_index($index, bool $raise_error = true) :?int |
|
720 | + protected function _check_index($index, bool $raise_error = true) : ?int |
|
721 | 721 | { |
722 | 722 | if (is_string($index)) { |
723 | 723 | $url = $index; |