@@ -23,7 +23,7 @@ |
||
23 | 23 | include dirname(__DIR__) . '/config-default.inc.php'; |
24 | 24 | } |
25 | 25 | |
26 | -if (! defined('MIDCOM_STATIC_URL')) { |
|
26 | +if (!defined('MIDCOM_STATIC_URL')) { |
|
27 | 27 | define('MIDCOM_STATIC_URL', '/midcom-static'); |
28 | 28 | } |
29 | 29 |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | |
106 | 106 | $this->_add_visibility_checks(); |
107 | 107 | |
108 | - if ( empty($this->_limit) |
|
108 | + if (empty($this->_limit) |
|
109 | 109 | && empty($this->_offset)) { |
110 | 110 | // No point to do windowing |
111 | 111 | $newresult = $this->_execute_and_check_privileges(); |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | } |
151 | 151 | $this->_query->set_limit($window_size); |
152 | 152 | |
153 | - while ( ($resultset = $this->_execute_and_check_privileges()) |
|
153 | + while (($resultset = $this->_execute_and_check_privileges()) |
|
154 | 154 | || $this->denied > $denied) { |
155 | 155 | $size = count($resultset); |
156 | 156 | $total_size = $size + ($this->denied - $denied); |
@@ -73,7 +73,7 @@ |
||
73 | 73 | } |
74 | 74 | } |
75 | 75 | |
76 | - if ( $this->_topic->can_do('midgard:update') |
|
76 | + if ($this->_topic->can_do('midgard:update') |
|
77 | 77 | && $this->_topic->can_do('midcom:component_config')) { |
78 | 78 | $buttons[] = $workflow->get_button('config/', [ |
79 | 79 | MIDCOM_TOOLBAR_LABEL => $this->_l10n_midcom->get('component configuration'), |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | ]); |
55 | 55 | } |
56 | 56 | |
57 | - if ( midcom::get()->config->get('midcom_services_rcs_enable') |
|
57 | + if (midcom::get()->config->get('midcom_services_rcs_enable') |
|
58 | 58 | && $object->can_do('midgard:update') |
59 | 59 | && $object->_use_rcs) { |
60 | 60 | $buttons[] = [ |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | } |
85 | 85 | |
86 | 86 | $icon = 'stock-icons/16x16/page-' . $icontype . '.png'; |
87 | - if ( !midcom::get()->config->get('show_hidden_objects') |
|
87 | + if (!midcom::get()->config->get('show_hidden_objects') |
|
88 | 88 | && !$object->metadata->is_visible()) { |
89 | 89 | // Take scheduling into account |
90 | 90 | $icon = 'stock-icons/16x16/page-' . $icontype . '-notpublished.png'; |
@@ -72,7 +72,7 @@ |
||
72 | 72 | |
73 | 73 | $this->_group = new org_openpsa_contacts_group_dba(); |
74 | 74 | |
75 | - if ( $this->_type == 'organization' |
|
75 | + if ($this->_type == 'organization' |
|
76 | 76 | && $this->_parent_group) { |
77 | 77 | $this->_group->owner = $this->_parent_group->id; |
78 | 78 | } else { |
@@ -50,6 +50,6 @@ |
||
50 | 50 | $indexer = new org_openpsa_documents_midcom_indexer($this->_topic); |
51 | 51 | $indexer->index($controller->get_datamanager()); |
52 | 52 | |
53 | - return $controller->get_datamanager()->get_storage()->get_value()->name. "/"; |
|
53 | + return $controller->get_datamanager()->get_storage()->get_value()->name . "/"; |
|
54 | 54 | } |
55 | 55 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | ]); |
47 | 47 | } |
48 | 48 | |
49 | - if ( $this->_article->topic === $this->_topic->id |
|
49 | + if ($this->_article->topic === $this->_topic->id |
|
50 | 50 | && $this->_article->can_do('midgard:delete')) { |
51 | 51 | $delete = $this->get_workflow('delete', ['object' => $this->_article]); |
52 | 52 | $buttons[] = $delete->get_button("delete/{$this->_article->guid}/"); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | $this->_datamanager->set_storage($this->_article); |
115 | 115 | |
116 | 116 | $arg = $this->_article->name ?: $this->_article->guid; |
117 | - if ( $arg != 'index' |
|
117 | + if ($arg != 'index' |
|
118 | 118 | && $this->_config->get('hide_navigation')) { |
119 | 119 | $this->add_breadcrumb("{$arg}/", $this->_article->title); |
120 | 120 | } |
@@ -124,13 +124,13 @@ discard block |
||
124 | 124 | midcom::get()->metadata->set_request_metadata($this->_article->metadata->revised, $this->_article->guid); |
125 | 125 | $this->bind_view_to_object($this->_article, $this->_datamanager->get_schema()->get_name()); |
126 | 126 | |
127 | - if ( $this->_config->get('indexinnav') |
|
127 | + if ($this->_config->get('indexinnav') |
|
128 | 128 | || $this->_config->get('autoindex') |
129 | 129 | || $this->_article->name != 'index') { |
130 | 130 | $this->set_active_leaf($this->_article->id); |
131 | 131 | } |
132 | 132 | |
133 | - if ( $this->_config->get('folder_in_title') |
|
133 | + if ($this->_config->get('folder_in_title') |
|
134 | 134 | && $this->_topic->extra != $this->_article->title) { |
135 | 135 | midcom::get()->head->set_pagetitle("{$this->_topic->extra}: {$this->_article->title}"); |
136 | 136 | } else { |
@@ -22,7 +22,7 @@ |
||
22 | 22 | </td> |
23 | 23 | <td class="revisor"> |
24 | 24 | <?php |
25 | - if ( $history['user'] |
|
25 | + if ($history['user'] |
|
26 | 26 | && $user = midcom::get()->auth->get_user($history['user'])) { |
27 | 27 | $person_label = org_openpsa_widgets_contact::get($user->guid)->show_inline(); |
28 | 28 | echo " {$person_label}\n"; |
@@ -16,8 +16,8 @@ |
||
16 | 16 | $view['author'], |
17 | 17 | $formatter->datetime($created)); |
18 | 18 | |
19 | -if ( midcom::get()->auth->admin |
|
20 | - || ( midcom::get()->auth->user |
|
19 | +if (midcom::get()->auth->admin |
|
20 | + || (midcom::get()->auth->user |
|
21 | 21 | && $comment->can_do('midgard:delete'))) { |
22 | 22 | $creator = $comment->metadata->creator; |
23 | 23 | $created = $comment->metadata->created; |