@@ -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 | } |
@@ -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 | /** |
@@ -50,9 +50,11 @@ |
||
| 50 | 50 | $filepath = $this->generate_filename(); |
| 51 | 51 | try { |
| 52 | 52 | $this->exec('co -q -f -r' . escapeshellarg(trim($revision)) . " {$filepath} 2>/dev/null"); |
| 53 | - } catch (midcom_error $e) { |
|
| 53 | + } |
|
| 54 | + catch (midcom_error $e) { |
|
| 54 | 55 | $e->log(); |
| 55 | - } finally { |
|
| 56 | + } |
|
| 57 | + finally { |
|
| 56 | 58 | if (!file_exists($filepath)) { |
| 57 | 59 | return []; |
| 58 | 60 | } |
@@ -91,7 +91,7 @@ |
||
| 91 | 91 | $revisions[$history['revision']] = $history; |
| 92 | 92 | |
| 93 | 93 | $i += 3; |
| 94 | - while ( $i < $total |
|
| 94 | + while ($i < $total |
|
| 95 | 95 | && !str_starts_with($lines[$i], '----') |
| 96 | 96 | && !str_starts_with($lines[$i], '=====')) { |
| 97 | 97 | $i++; |
@@ -55,7 +55,8 @@ |
||
| 55 | 55 | { |
| 56 | 56 | try { |
| 57 | 57 | return eval("return [{$data}\n];"); |
| 58 | - } catch (ParseError $e) { |
|
| 58 | + } |
|
| 59 | + catch (ParseError $e) { |
|
| 59 | 60 | throw new midcom_error('Failed to parse config data: ' . $e->getMessage() . ' in ' . $path . ' line ' . $e->getLine()); |
| 60 | 61 | } |
| 61 | 62 | } |
@@ -43,11 +43,11 @@ |
||
| 43 | 43 | public function buildForm(FormBuilderInterface $builder, array $options) |
| 44 | 44 | { |
| 45 | 45 | $session_key = md5($builder->getForm()->getName() . '_session_key'); |
| 46 | - $builder->addEventListener(FormEvents::POST_SUBMIT, function (FormEvent $event) use ($session_key) { |
|
| 46 | + $builder->addEventListener(FormEvents::POST_SUBMIT, function(FormEvent $event) use ($session_key) { |
|
| 47 | 47 | $value = $event->getForm()->getData(); |
| 48 | 48 | $session = new midcom_services_session('midcom_datamanager_captcha'); |
| 49 | 49 | |
| 50 | - if ( !$session->exists($session_key) |
|
| 50 | + if (!$session->exists($session_key) |
|
| 51 | 51 | || $value != $session->get($session_key)) { |
| 52 | 52 | $event->getForm()->addError(new FormError($this->l10n->get('captcha validation failed'))); |
| 53 | 53 | } |