@@ -35,11 +35,11 @@ discard block |
||
35 | 35 | $resolver |
36 | 36 | ->setRequired('schema') |
37 | 37 | ->setAllowedTypes('schema', [schema::class, 'string']) |
38 | - ->setDefault('action', function (Options $options, $value) { |
|
38 | + ->setDefault('action', function(Options $options, $value) { |
|
39 | 39 | return $options['schema']->get('action'); |
40 | 40 | }); |
41 | 41 | |
42 | - $resolver->setNormalizer('csrf_protection', function (Options $options, $value) { |
|
42 | + $resolver->setNormalizer('csrf_protection', function(Options $options, $value) { |
|
43 | 43 | foreach ($options['schema']->get('fields') as $config) { |
44 | 44 | if ($config['widget'] === 'csrf') { |
45 | 45 | return true; |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | } |
48 | 48 | return false; |
49 | 49 | }); |
50 | - $resolver->setNormalizer('constraints', function (Options $options, $value) { |
|
50 | + $resolver->setNormalizer('constraints', function(Options $options, $value) { |
|
51 | 51 | $validation = $options['schema']->get('validation'); |
52 | 52 | if (!empty($validation)) { |
53 | 53 | $cb_wrapper = new cb_wrapper($validation); |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | } |
56 | 56 | return $value; |
57 | 57 | }); |
58 | - $resolver->setNormalizer('schema', function (Options $options, $value) { |
|
58 | + $resolver->setNormalizer('schema', function(Options $options, $value) { |
|
59 | 59 | if (is_string($value)) { |
60 | 60 | $schemadb = schemadb::from_path($value); |
61 | 61 | return $schemadb->get_first(); |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | // this is mainly there to skip validation in case the user pressed cancel |
81 | 81 | $builder->addEventListener(FormEvents::POST_SUBMIT, function(PostSubmitEvent $event) { |
82 | 82 | $form = $event->getForm(); |
83 | - if ( $form instanceof Form |
|
83 | + if ($form instanceof Form |
|
84 | 84 | && $form->getClickedButton() |
85 | 85 | && $form->getClickedButton()->getConfig()->getOption('operation') == controller::CANCEL) { |
86 | 86 | $event->stopPropagation(); |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | 'max_count' => 0 |
39 | 39 | ] |
40 | 40 | ]); |
41 | - $resolver->setNormalizer('constraints', function (Options $options, $value) { |
|
41 | + $resolver->setNormalizer('constraints', function(Options $options, $value) { |
|
42 | 42 | $validation = []; |
43 | 43 | if ($options['type_config']['max_count'] > 0) { |
44 | 44 | $validation['max'] = $options['type_config']['max_count']; |
@@ -51,12 +51,12 @@ discard block |
||
51 | 51 | } |
52 | 52 | return $validation; |
53 | 53 | }); |
54 | - $resolver->setNormalizer('entry_options', function (Options $options, $value) { |
|
54 | + $resolver->setNormalizer('entry_options', function(Options $options, $value) { |
|
55 | 55 | return array_replace([ |
56 | 56 | 'widget_config' => $options['widget_config'] |
57 | 57 | ], (array) $value); |
58 | 58 | }); |
59 | - $resolver->setNormalizer('widget_config', function (Options $options, $value) { |
|
59 | + $resolver->setNormalizer('widget_config', function(Options $options, $value) { |
|
60 | 60 | if (!array_key_exists('sortable', $value)) { |
61 | 61 | $value['sortable'] = false; |
62 | 62 | } |
@@ -23,9 +23,9 @@ |
||
23 | 23 | $schemadb = schemadb::from_path($this->_config->get('schemadb_acl')); |
24 | 24 | |
25 | 25 | // Get the calendar root event |
26 | - if ( class_exists('org_openpsa_calendar_interface') |
|
26 | + if (class_exists('org_openpsa_calendar_interface') |
|
27 | 27 | && $root_event = org_openpsa_calendar_interface::find_root_event()) { |
28 | - $field =& $schemadb->get('default')->get_field('calendar'); |
|
28 | + $field = & $schemadb->get('default')->get_field('calendar'); |
|
29 | 29 | $field['type_config']['privilege_object'] = $root_event; |
30 | 30 | $field['type_config']['assignee'] = 'user:' . $person->guid; |
31 | 31 | } |
@@ -33,7 +33,7 @@ |
||
33 | 33 | echo " <td>" . $formatter->datetime($revision['date'], IntlDateFormatter::MEDIUM, IntlDateFormatter::LONG) . "</td>\n"; |
34 | 34 | echo " <td>"; |
35 | 35 | |
36 | - if ( $revision['user'] |
|
36 | + if ($revision['user'] |
|
37 | 37 | && $user = midcom::get()->auth->get_user($revision['user'])) { |
38 | 38 | echo $user->get_storage()->name; |
39 | 39 | } elseif ($revision['ip']) { |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | } |
65 | 65 | |
66 | 66 | //Substyle handling |
67 | - if ( !empty($data['message_array']['substyle']) |
|
67 | + if (!empty($data['message_array']['substyle']) |
|
68 | 68 | && !str_starts_with($data['message_array']['substyle'], 'builtin:')) { |
69 | 69 | debug_add("Appending substyle {$data['message_array']['substyle']}"); |
70 | 70 | midcom::get()->style->append_substyle($data['message_array']['substyle']); |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | private function _real_show_compose(array $data) |
114 | 114 | { |
115 | 115 | $prefix = ''; |
116 | - if ( !empty($data['message_array']['substyle']) |
|
116 | + if (!empty($data['message_array']['substyle']) |
|
117 | 117 | && preg_match('/^builtin:(.*)/', $data['message_array']['substyle'], $matches_style)) { |
118 | 118 | $prefix = $matches_style[1] . '-'; |
119 | 119 | } |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | $images = $qb->execute(); |
62 | 62 | $failed = 0; |
63 | 63 | foreach ($images as $image) { |
64 | - if ( !$image->generate_image('thumbnail', $this->_config->get('thumbnail_filter')) |
|
64 | + if (!$image->generate_image('thumbnail', $this->_config->get('thumbnail_filter')) |
|
65 | 65 | || !$image->generate_image('image', $this->_config->get('image_filter'))) { |
66 | 66 | $failed++; |
67 | 67 | } |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | $attachment->title = $title; |
242 | 242 | $attachment->mimetype = $file->getMimeType(); |
243 | 243 | $attachment->parentguid = $image->guid; |
244 | - if ( !$attachment->create() |
|
244 | + if (!$attachment->create() |
|
245 | 245 | || !$attachment->copy_from_file($file->getRealPath())) { |
246 | 246 | throw new midcom_error('Failed to create attachment: ' . midcom_connection::get_error_string()); |
247 | 247 | } |
@@ -123,7 +123,8 @@ |
||
123 | 123 | try { |
124 | 124 | $this->$function($request->request, $request->files); |
125 | 125 | $this->response['success'] = true; |
126 | - } catch (midcom_error $e) { |
|
126 | + } |
|
127 | + catch (midcom_error $e) { |
|
127 | 128 | $this->response['success'] = false; |
128 | 129 | $this->response['error'] = $e->getMessage(); |
129 | 130 | } |
@@ -73,7 +73,8 @@ |
||
73 | 73 | if ($stat instanceof midcom_services_indexer_client) { |
74 | 74 | try { |
75 | 75 | $stat->reindex(); |
76 | - } catch (RequestException $e) { |
|
76 | + } |
|
77 | + catch (RequestException $e) { |
|
77 | 78 | if ($e->hasResponse()) { |
78 | 79 | $crawler = new Crawler($e->getResponse()->getBody()->getContents()); |
79 | 80 | $body = $crawler->filterXPath('//body')->html(); |
@@ -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); |
@@ -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; |