@@ -196,7 +196,7 @@ |
||
| 196 | 196 | |
| 197 | 197 | private function resolve_includes(string $content) : string |
| 198 | 198 | { |
| 199 | - return preg_replace_callback("/<\\(([a-zA-Z0-9 _-]+)\\)>/", function (array $matches) { |
|
| 199 | + return preg_replace_callback("/<\\(([a-zA-Z0-9 _-]+)\\)>/", function(array $matches) { |
|
| 200 | 200 | $element = $matches[1]; |
| 201 | 201 | |
| 202 | 202 | switch ($element) { |
@@ -98,7 +98,7 @@ |
||
| 98 | 98 | { |
| 99 | 99 | if (!isset($this->_modules[$name])) { |
| 100 | 100 | $this->_modules[$name] = $module; |
| 101 | - $this->$name =& $this->_modules[$name]; |
|
| 101 | + $this->$name = & $this->_modules[$name]; |
|
| 102 | 102 | } |
| 103 | 103 | } |
| 104 | 104 | |
@@ -98,8 +98,8 @@ discard block |
||
| 98 | 98 | if (!$this->_schemadb) { |
| 99 | 99 | $this->_schemadb = schemadb::from_path($this->_config->get('schemadb')); |
| 100 | 100 | |
| 101 | - if ( $this->_config->get('use_captcha') |
|
| 102 | - || ( !midcom::get()->auth->user |
|
| 101 | + if ($this->_config->get('use_captcha') |
|
| 102 | + || (!midcom::get()->auth->user |
|
| 103 | 103 | && $this->_config->get('use_captcha_if_anonymous'))) { |
| 104 | 104 | $fields = $this->_schemadb->get('comment')->get('fields'); |
| 105 | 105 | $fields['captcha'] = [ |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | $this->_schemadb->get('comment')->set('fields', $fields); |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | - if ( $this->_config->get('ratings_enable') |
|
| 115 | + if ($this->_config->get('ratings_enable') |
|
| 116 | 116 | && $this->_schemadb->get('comment')->has_field('rating')) { |
| 117 | 117 | $this->_schemadb->get('comment')->get_field('rating')['hidden'] = false; |
| 118 | 118 | } |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | $this->_comments = $this->_comments->execute(); |
| 192 | 192 | } |
| 193 | 193 | |
| 194 | - if ( midcom::get()->auth->user |
|
| 194 | + if (midcom::get()->auth->user |
|
| 195 | 195 | || $this->_config->get('allow_anonymous')) { |
| 196 | 196 | $this->_init_post_controller($request); |
| 197 | 197 | if ($response = $this->_process_post($request)) { |
@@ -222,7 +222,7 @@ discard block |
||
| 222 | 222 | */ |
| 223 | 223 | private function _process_post(Request $request) |
| 224 | 224 | { |
| 225 | - if ( !midcom::get()->auth->user |
|
| 225 | + if (!midcom::get()->auth->user |
|
| 226 | 226 | && !midcom::get()->auth->request_sudo('net.nehmer.comments')) { |
| 227 | 227 | throw new midcom_error('We were anonymous but could not acquire SUDO privileges, aborting'); |
| 228 | 228 | } |
@@ -235,7 +235,7 @@ discard block |
||
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | $formdata = $this->_post_controller->get_form_values(); |
| 238 | - if ( $formdata['subscribe'] |
|
| 238 | + if ($formdata['subscribe'] |
|
| 239 | 239 | && midcom::get()->auth->user) { |
| 240 | 240 | // User wants to subscribe to receive notifications about this comments thread |
| 241 | 241 | |
@@ -269,7 +269,7 @@ discard block |
||
| 269 | 269 | */ |
| 270 | 270 | private function _get_last_modified() : int |
| 271 | 271 | { |
| 272 | - return array_reduce($this->_comments, function ($carry, net_nehmer_comments_comment $item) { |
|
| 272 | + return array_reduce($this->_comments, function($carry, net_nehmer_comments_comment $item) { |
|
| 273 | 273 | return max($item->metadata->revised, $carry); |
| 274 | 274 | }, 0); |
| 275 | 275 | } |
@@ -291,8 +291,8 @@ discard block |
||
| 291 | 291 | $data['comment_toolbar'] = $this->populate_post_toolbar($comment); |
| 292 | 292 | midcom_show_style('comments-item'); |
| 293 | 293 | |
| 294 | - if ( midcom::get()->auth->admin |
|
| 295 | - || ( midcom::get()->auth->user |
|
| 294 | + if (midcom::get()->auth->admin |
|
| 295 | + || (midcom::get()->auth->user |
|
| 296 | 296 | && $comment->can_do('midgard:delete'))) { |
| 297 | 297 | midcom_show_style('comments-admintoolbar'); |
| 298 | 298 | } |
@@ -302,7 +302,7 @@ discard block |
||
| 302 | 302 | midcom_show_style('comments-nonefound'); |
| 303 | 303 | } |
| 304 | 304 | |
| 305 | - if ( midcom::get()->auth->user |
|
| 305 | + if (midcom::get()->auth->user |
|
| 306 | 306 | || $this->_config->get('allow_anonymous')) { |
| 307 | 307 | midcom_show_style('post-comment'); |
| 308 | 308 | } else { |
@@ -54,7 +54,7 @@ |
||
| 54 | 54 | $message['content'] = ''; |
| 55 | 55 | $logs = $comment->get_logs(); |
| 56 | 56 | if (!empty($logs)) { |
| 57 | - $message['content'] .= $this->_l10n->get('moderation history').":\n\n"; |
|
| 57 | + $message['content'] .= $this->_l10n->get('moderation history') . ":\n\n"; |
|
| 58 | 58 | foreach ($logs as $time => $log) { |
| 59 | 59 | $reported = $this->_l10n->get_formatter()->datetime(strtotime("{$time}Z")); |
| 60 | 60 | $message['content'] .= $this->_l10n->get(sprintf('%s: %s by %s (from %s)', "$reported:\n", $this->_l10n->get($log['action']), $log['reporter'], $log['ip'])) . "\n\n"; |
@@ -47,7 +47,8 @@ |
||
| 47 | 47 | if ($node_id) { |
| 48 | 48 | try { |
| 49 | 49 | $comments_topic = new midcom_db_topic($node_id); |
| 50 | - } catch (midcom_error $e) { |
|
| 50 | + } |
|
| 51 | + catch (midcom_error $e) { |
|
| 51 | 52 | return null; |
| 52 | 53 | } |
| 53 | 54 | |
@@ -409,7 +409,8 @@ |
||
| 409 | 409 | foreach ($this->_articles as $article_counter => $article) { |
| 410 | 410 | try { |
| 411 | 411 | $data['datamanager']->set_storage($article); |
| 412 | - } catch (midcom_error $e) { |
|
| 412 | + } |
|
| 413 | + catch (midcom_error $e) { |
|
| 413 | 414 | $e->log(); |
| 414 | 415 | continue; |
| 415 | 416 | } |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | |
| 76 | 76 | private function _process_category_constraint(org_openpsa_qbpager $qb) |
| 77 | 77 | { |
| 78 | - if ( !in_array($this->category, $this->_request_data['categories']) |
|
| 78 | + if (!in_array($this->category, $this->_request_data['categories']) |
|
| 79 | 79 | && !$this->_config->get('categories_custom_enable')) { |
| 80 | 80 | throw new midcom_error('Custom categories are not allowed'); |
| 81 | 81 | // TODO: Check here if there are actually items in this cat? |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | midcom::get()->head->set_pagetitle($this->_request_data['page_title']); |
| 89 | 89 | |
| 90 | 90 | // Activate correct leaf |
| 91 | - if ( $this->_config->get('show_navigation_pseudo_leaves') |
|
| 91 | + if ($this->_config->get('show_navigation_pseudo_leaves') |
|
| 92 | 92 | && in_array($this->category, $this->_request_data['categories'])) { |
| 93 | 93 | $this->set_active_leaf($this->_topic->id . '_CAT_' . $this->category); |
| 94 | 94 | } |
@@ -55,11 +55,11 @@ |
||
| 55 | 55 | foreach (array_filter($csv_line) as $field => $value) { |
| 56 | 56 | // Process the row accordingly |
| 57 | 57 | $field_matching = $this->_settings['fields'][$field]; |
| 58 | - if ( $field_matching |
|
| 58 | + if ($field_matching |
|
| 59 | 59 | && strstr($field_matching, ':')) { |
| 60 | 60 | [$schemadb, $schema_field] = explode(':', $field_matching); |
| 61 | 61 | |
| 62 | - if ( !array_key_exists($schemadb, $this->_schemadbs) |
|
| 62 | + if (!array_key_exists($schemadb, $this->_schemadbs) |
|
| 63 | 63 | || !$this->_schemadbs[$schemadb]->get('default')->has_field($schema_field)) { |
| 64 | 64 | // Invalid matching, skip |
| 65 | 65 | continue; |
@@ -568,10 +568,10 @@ |
||
| 568 | 568 | } |
| 569 | 569 | |
| 570 | 570 | //owner privileges override everything but person privileges, so we have to cross-check those here |
| 571 | - if ( $privilegename != 'midgard:owner' |
|
| 571 | + if ($privilegename != 'midgard:owner' |
|
| 572 | 572 | && $last_scope < MIDCOM_PRIVILEGE_SCOPE_OWNER) { |
| 573 | 573 | $owner_privileges = $this->get_owner_default_privileges(); |
| 574 | - if ( array_key_exists($privilegename, $owner_privileges) |
|
| 574 | + if (array_key_exists($privilegename, $owner_privileges) |
|
| 575 | 575 | && $this->_load_content_privilege('midgard:owner', $guid, $class, $user_id) |
| 576 | 576 | && self::$_content_privileges_cache[$cache_id]['midgard:owner']) { |
| 577 | 577 | self::$_content_privileges_cache[$cache_id][$privilegename] = ($owner_privileges[$privilegename] == MIDCOM_PRIVILEGE_ALLOW); |
@@ -261,17 +261,17 @@ |
||
| 261 | 261 | private static $_default_magic_class_privileges = []; |
| 262 | 262 | |
| 263 | 263 | /** |
| 264 | - * Internal cache of the content privileges of users on content objects, this is |
|
| 265 | - * an associative array using a combination of the user identifier and the object's |
|
| 266 | - * guid as index. The privileges for the anonymous user use the magic |
|
| 267 | - * EVERYONE as user identifier. |
|
| 268 | - * |
|
| 269 | - * This must not be merged with the class-wide privileges_cache, because otherwise |
|
| 270 | - * class_default_privileges for child objects might be overridden by parent default |
|
| 271 | - * privileges |
|
| 272 | - * |
|
| 273 | - * @var array |
|
| 274 | - */ |
|
| 264 | + * Internal cache of the content privileges of users on content objects, this is |
|
| 265 | + * an associative array using a combination of the user identifier and the object's |
|
| 266 | + * guid as index. The privileges for the anonymous user use the magic |
|
| 267 | + * EVERYONE as user identifier. |
|
| 268 | + * |
|
| 269 | + * This must not be merged with the class-wide privileges_cache, because otherwise |
|
| 270 | + * class_default_privileges for child objects might be overridden by parent default |
|
| 271 | + * privileges |
|
| 272 | + * |
|
| 273 | + * @var array |
|
| 274 | + */ |
|
| 275 | 275 | private static $_content_privileges_cache = []; |
| 276 | 276 | |
| 277 | 277 | /** |
@@ -64,7 +64,8 @@ |
||
| 64 | 64 | try { |
| 65 | 65 | $backend->update($message); |
| 66 | 66 | return true; |
| 67 | - } catch (midcom_error $e) { |
|
| 67 | + } |
|
| 68 | + catch (midcom_error $e) { |
|
| 68 | 69 | debug_add('RCS: Could not save file!'); |
| 69 | 70 | $e->log(); |
| 70 | 71 | return false; |