@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | { |
49 | 49 | $this->object = midcom::get()->dbfactory->get_object_by_guid($guid); |
50 | 50 | |
51 | - if ( !midcom::get()->config->get('midcom_services_rcs_enable') |
|
51 | + if (!midcom::get()->config->get('midcom_services_rcs_enable') |
|
52 | 52 | || !$this->object->_use_rcs) { |
53 | 53 | throw new midcom_error_notfound("Revision control not supported for " . get_class($this->object) . "."); |
54 | 54 | } |
@@ -262,7 +262,7 @@ discard block |
||
262 | 262 | throw new midcom_error_notfound("Revision {$args[1]} does not exist."); |
263 | 263 | } |
264 | 264 | |
265 | - $data['preview'] = array_filter($this->backend->get_revision($revision), function ($value, $key) { |
|
265 | + $data['preview'] = array_filter($this->backend->get_revision($revision), function($value, $key) { |
|
266 | 266 | return !is_array($value) |
267 | 267 | && !in_array($value, ['', '0000-00-00']) |
268 | 268 | && midcom_services_rcs::is_field_showable($key); |
@@ -292,7 +292,7 @@ discard block |
||
292 | 292 | $this->object->require_do('midgard:update'); |
293 | 293 | // TODO: set another privilege for restoring? |
294 | 294 | |
295 | - if ( $this->backend->get_history()->version_exists($args[1]) |
|
295 | + if ($this->backend->get_history()->version_exists($args[1]) |
|
296 | 296 | && $this->backend->restore_to_revision($args[1])) { |
297 | 297 | midcom::get()->uimessages->add($this->_l10n->get('midcom.admin.rcs'), sprintf($this->_l10n->get('restore to version %s successful'), $args[1])); |
298 | 298 | return new midcom_response_relocate($this->get_object_url()); |
@@ -32,7 +32,7 @@ |
||
32 | 32 | echo " <td><a href='" . $data['router']->generate('preview', ['guid' => $guid, 'revision' => $number]) . "'>{$revision['version']}</a></td>\n"; |
33 | 33 | echo " <td>" . $formatter->datetime($revision['date']) . "</td>\n"; |
34 | 34 | |
35 | - if ( $revision['user'] |
|
35 | + if ($revision['user'] |
|
36 | 36 | && $user = midcom::get()->auth->get_user($revision['user'])) { |
37 | 37 | $person_label = $user->get_storage()->name; |
38 | 38 | echo " <td>{$person_label}</td>\n"; |
@@ -17,7 +17,7 @@ |
||
17 | 17 | |
18 | 18 | public function form_widget_simple(FormView $view, array $data) |
19 | 19 | { |
20 | - if ( !empty($data['value']) |
|
20 | + if (!empty($data['value']) |
|
21 | 21 | || is_numeric($data['value'])) { |
22 | 22 | return $data['value']; |
23 | 23 | } |
@@ -143,7 +143,7 @@ |
||
143 | 143 | |
144 | 144 | public function form_widget_simple(FormView $view, array $data) |
145 | 145 | { |
146 | - if ( !empty($data['value']) |
|
146 | + if (!empty($data['value']) |
|
147 | 147 | || is_numeric($data['value'])) { |
148 | 148 | return $this->escape($data['value']); |
149 | 149 | } |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | } |
58 | 58 | $buttons = []; |
59 | 59 | $workflow = new midcom\workflow\datamanager; |
60 | - if ( $this->topic->can_do('midgard:update') |
|
60 | + if ($this->topic->can_do('midgard:update') |
|
61 | 61 | && $this->topic->can_do('midcom.admin.folder:topic_management')) { |
62 | 62 | $buttons[] = $workflow->get_button("__ais/folder/edit/", [ |
63 | 63 | MIDCOM_TOOLBAR_LABEL => midcom::get()->i18n->get_string('edit folder', 'midcom.admin.folder'), |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | ]; |
92 | 92 | } |
93 | 93 | $buttons = array_merge($buttons, $this->get_approval_controls($this->topic, false)); |
94 | - if ( $this->topic->can_do('midcom.admin.folder:template_management') |
|
94 | + if ($this->topic->can_do('midcom.admin.folder:template_management') |
|
95 | 95 | && midcom::get()->auth->can_user_do('midgard.admin.asgard:manage_objects', null, 'midgard_admin_asgard_plugin')) { |
96 | 96 | $enabled = false; |
97 | 97 | $styleeditor_url = ''; |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | MIDCOM_TOOLBAR_ACCESSKEY => 'f', |
125 | 125 | ]); |
126 | 126 | } |
127 | - if ( $this->topic->guid !== midcom::get()->config->get('midcom_root_topic_guid') |
|
127 | + if ($this->topic->guid !== midcom::get()->config->get('midcom_root_topic_guid') |
|
128 | 128 | && $this->topic->can_do('midgard:delete')) { |
129 | 129 | $workflow = new midcom\workflow\delete(['object' => $this->topic, 'recursive' => true]); |
130 | 130 | $buttons[] = $workflow->get_button("__ais/folder/delete/", [ |
@@ -166,7 +166,7 @@ |
||
166 | 166 | $address = addslashes($address); |
167 | 167 | return preg_replace_callback( |
168 | 168 | '/href="(http:\/\/.*?)"/i', |
169 | - function ($match) use ($address) { |
|
169 | + function($match) use ($address) { |
|
170 | 170 | return 'href="' . str_replace("URL", rawurlencode($match[1]), $address) . '"'; |
171 | 171 | }, |
172 | 172 | $html); |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | { |
82 | 82 | $this->calculate_price(false); |
83 | 83 | |
84 | - if ( $this->orgOpenpsaObtype == org_openpsa_products_product_dba::DELIVERY_SUBSCRIPTION |
|
84 | + if ($this->orgOpenpsaObtype == org_openpsa_products_product_dba::DELIVERY_SUBSCRIPTION |
|
85 | 85 | && $this->continuous) { |
86 | 86 | $this->end = 0; |
87 | 87 | } elseif ($this->end < $this->start) { |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | $calculator->run($this); |
170 | 170 | $cost = $calculator->get_cost(); |
171 | 171 | $price = $calculator->get_price(); |
172 | - if ( $price != $this->price |
|
172 | + if ($price != $this->price |
|
173 | 173 | || $cost != $this->cost) { |
174 | 174 | $this->price = $price; |
175 | 175 | $this->cost = $cost; |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | $units = $agreement_hours['invoiceable']; |
217 | 217 | $uninvoiceableUnits = $agreement_hours['reported'] - ($agreement_hours['invoiceable'] + $agreement_hours['invoiced']); |
218 | 218 | |
219 | - if ( $units != $this->units |
|
219 | + if ($units != $this->units |
|
220 | 220 | || $uninvoiceableUnits != $this->uninvoiceableUnits) { |
221 | 221 | debug_add("agreement values have changed, setting units to " . $units . ", uninvoiceable: " . $uninvoiceableUnits); |
222 | 222 | $this->units = $units; |
@@ -270,7 +270,7 @@ discard block |
||
270 | 270 | |
271 | 271 | public function invoice() : bool |
272 | 272 | { |
273 | - if ( $this->state >= self::STATE_INVOICED |
|
273 | + if ($this->state >= self::STATE_INVOICED |
|
274 | 274 | || $this->orgOpenpsaObtype == org_openpsa_products_product_dba::DELIVERY_SUBSCRIPTION) { |
275 | 275 | return false; |
276 | 276 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | parent::__construct(); |
44 | 44 | |
45 | 45 | $this->_object = $object; |
46 | - $this->_request_data =& $request_data; |
|
46 | + $this->_request_data = & $request_data; |
|
47 | 47 | |
48 | 48 | $this->root_types = midcom_helper_reflector_tree::get_root_classes(); |
49 | 49 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | // we go through the path bottom up and show the first root type we find |
60 | 60 | foreach (array_reverse($this->_object_path) as $node) { |
61 | 61 | foreach ($this->root_types as $root_type) { |
62 | - if ( is_a($node, $root_type) |
|
62 | + if (is_a($node, $root_type) |
|
63 | 63 | || midcom_helper_reflector::is_same_class($root_type, $node->__midcom_class_name__)) { |
64 | 64 | $this->expanded_root_types[] = $root_type; |
65 | 65 | break; |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | |
72 | 72 | protected function _is_collapsed(string $type, int $total) : bool |
73 | 73 | { |
74 | - return ( $total > $this->_config->get('max_navigation_entries') |
|
74 | + return ($total > $this->_config->get('max_navigation_entries') |
|
75 | 75 | && empty($_GET['show_all_' . $type])); |
76 | 76 | } |
77 | 77 | |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | foreach ($ref->get_child_classes() as $class) { |
88 | 88 | $qb = $ref->_child_objects_type_qb($class, $object, false); |
89 | 89 | |
90 | - if ( !$qb |
|
90 | + if (!$qb |
|
91 | 91 | || !($count = $qb->count_unchecked())) { |
92 | 92 | continue; |
93 | 93 | } |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | { |
134 | 134 | $qb = $ref->_root_objects_qb(); |
135 | 135 | |
136 | - if ( !$qb |
|
136 | + if (!$qb |
|
137 | 137 | || !($total = $qb->count_unchecked())) { |
138 | 138 | return; |
139 | 139 | } |
@@ -211,7 +211,7 @@ discard block |
||
211 | 211 | } |
212 | 212 | |
213 | 213 | 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"; |
214 | - if ( $selected |
|
214 | + if ($selected |
|
215 | 215 | || $autoexpand) { |
216 | 216 | $this->_list_child_elements($object, $level + 1); |
217 | 217 | } |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | continue; |
232 | 232 | } |
233 | 233 | |
234 | - if ( method_exists($class, 'navigation') |
|
234 | + if (method_exists($class, 'navigation') |
|
235 | 235 | && ($this->_request_data['plugin_name'] == "asgard_{$component}")) { |
236 | 236 | $this->_request_data['expanded'] = true; |
237 | 237 | midcom_show_style('midgard_admin_asgard_navigation_section_header'); |
@@ -265,13 +265,13 @@ discard block |
||
265 | 265 | if ($this->_is_selected($object)) { |
266 | 266 | $css_class .= ' selected'; |
267 | 267 | } |
268 | - if ( is_object($this->_object) |
|
269 | - && ( $object->guid == $this->_object->guid |
|
270 | - || ( is_a($this->_object, midcom_db_parameter::class) |
|
268 | + if (is_object($this->_object) |
|
269 | + && ($object->guid == $this->_object->guid |
|
270 | + || (is_a($this->_object, midcom_db_parameter::class) |
|
271 | 271 | && $object->guid == $this->_object->parentguid))) { |
272 | 272 | $css_class .= ' current'; |
273 | 273 | } |
274 | - if ( !$object->can_do('midgard:update')) { |
|
274 | + if (!$object->can_do('midgard:update')) { |
|
275 | 275 | $css_class .= ' readonly'; |
276 | 276 | } |
277 | 277 | return $css_class; |
@@ -314,7 +314,7 @@ discard block |
||
314 | 314 | |
315 | 315 | // If the regular expression has been set, check which types should be shown |
316 | 316 | if ($regexp !== '//') { |
317 | - $label_mapping = array_filter($label_mapping, function ($root_type) use ($regexp, $exclude) { |
|
317 | + $label_mapping = array_filter($label_mapping, function($root_type) use ($regexp, $exclude) { |
|
318 | 318 | return preg_match($regexp, $root_type) == $exclude; |
319 | 319 | }, ARRAY_FILTER_USE_KEY); |
320 | 320 | } |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | * click if nothing is expanded |
345 | 345 | */ |
346 | 346 | $types_shown = false; |
347 | - if ( !empty($expanded_types) |
|
347 | + if (!empty($expanded_types) |
|
348 | 348 | && midgard_admin_asgard_plugin::get_preference('navigation_type') === 'dropdown') { |
349 | 349 | $this->_draw_select_navigation(); |
350 | 350 | $types_shown = true; |
@@ -16,7 +16,7 @@ |
||
16 | 16 | |
17 | 17 | $edited = (int) $view_metadata->get('revised'); |
18 | 18 | $revision = $view_metadata->get('revision'); |
19 | - if ( $revision > 1 |
|
19 | + if ($revision > 1 |
|
20 | 20 | && $edited != $created) { |
21 | 21 | try { |
22 | 22 | $editor = new midcom_db_person($view_metadata->get('revisor')); |