@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | return false; |
52 | 52 | } |
53 | 53 | |
54 | - if ( !$this->can_do('midgard:update') |
|
54 | + if (!$this->can_do('midgard:update') |
|
55 | 55 | || !$this->can_do('midgard:attachments')) { |
56 | 56 | debug_add("Failed to set parameters, midgard:update or midgard:attachments on " . static::class . " {$this->guid} not granted for the current user.", |
57 | 57 | MIDCOM_LOG_ERROR); |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | return null; |
72 | 72 | } |
73 | 73 | |
74 | - if ( !$this->can_do('midgard:update') |
|
74 | + if (!$this->can_do('midgard:update') |
|
75 | 75 | || !$this->can_do('midgard:attachments')) { |
76 | 76 | debug_add("Failed to set parameters, midgard:update or midgard:attachments on the " . static::class . " {$this->guid} not granted for the current user.", |
77 | 77 | MIDCOM_LOG_ERROR); |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | $attachment->parentguid = $this->guid; |
86 | 86 | |
87 | 87 | if (!$attachment->create()) { |
88 | - debug_add("Could not create the attachment '{$name}' for " . static::class . " {$this->guid}: " . midcom_connection::get_error_string(), |
|
88 | + debug_add("Could not create the attachment '{$name}' for " . static::class . " {$this->guid}: " . midcom_connection::get_error_string(), |
|
89 | 89 | MIDCOM_LOG_INFO); |
90 | 90 | return null; |
91 | 91 | } |
@@ -226,7 +226,7 @@ |
||
226 | 226 | private function error(string $message, string $filename, int $line) : midcom_error |
227 | 227 | { |
228 | 228 | $line++; // Array is 0-indexed |
229 | - return new midcom_error('L10n DB SYNTAX ERROR: ' . $message . ' at ' . $filename . ' ' . $line); |
|
229 | + return new midcom_error('L10n DB SYNTAX ERROR: ' . $message . ' at ' . $filename . ' ' . $line); |
|
230 | 230 | } |
231 | 231 | |
232 | 232 | /** |
@@ -56,7 +56,8 @@ |
||
56 | 56 | try { |
57 | 57 | $backend->update(midcom::get()->auth->user->id ?? 'NOBODY', $message); |
58 | 58 | return true; |
59 | - } catch (midcom_error $e) { |
|
59 | + } |
|
60 | + catch (midcom_error $e) { |
|
60 | 61 | debug_add('RCS: Could not save file!'); |
61 | 62 | $e->log(); |
62 | 63 | return false; |
@@ -144,7 +144,7 @@ |
||
144 | 144 | */ |
145 | 145 | public function show(bool $show_simple = false) |
146 | 146 | { |
147 | - if ( $show_simple |
|
147 | + if ($show_simple |
|
148 | 148 | || !midcom::get()->auth->can_user_do('midcom:ajax', null, static::class)) { |
149 | 149 | $this->show_simple(); |
150 | 150 | return; |
@@ -98,7 +98,8 @@ |
||
98 | 98 | $node_guid = $siteconfig->get_node_guid($component); |
99 | 99 | try { |
100 | 100 | $available_generators[$component] = midcom_db_topic::get_cached($node_guid)->get_label(); |
101 | - } catch (midcom_error $e) { |
|
101 | + } |
|
102 | + catch (midcom_error $e) { |
|
102 | 103 | debug_add("topic for component '{$component}' not found or accessible"); |
103 | 104 | } |
104 | 105 | } |
@@ -246,7 +246,7 @@ |
||
246 | 246 | */ |
247 | 247 | public function prepare_handler(midcom_baseclasses_components_handler $handler, array &$parameters) |
248 | 248 | { |
249 | - $this->parameters =& $parameters; |
|
249 | + $this->parameters = & $parameters; |
|
250 | 250 | |
251 | 251 | $parameters['handler'] = explode('::', $parameters['_controller'], 2); |
252 | 252 |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | return new midcom_response_relocate($this->router->generate('task_view', ['guid' => $guid])); |
59 | 59 | } |
60 | 60 | |
61 | - if ( $request->request->has('save') |
|
61 | + if ($request->request->has('save') |
|
62 | 62 | && $prospects = $request->request->all('org_openpsa_projects_prospects')) { |
63 | 63 | $qb = org_openpsa_projects_task_resource_dba::new_query_builder(); |
64 | 64 | $qb->add_constraint('guid', 'IN', array_keys($prospects)); |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | // create relatedto |
90 | 90 | org_openpsa_relatedto_plugin::create($event, 'org.openpsa.calendar', $this->_task, 'org.openpsa.projects'); |
91 | 91 | } |
92 | - if ( $update_prospect |
|
92 | + if ($update_prospect |
|
93 | 93 | && !$prospect->update()) { |
94 | 94 | debug_add('Failed to update prospect: ' . midcom_connection::get_error_string(), MIDCOM_LOG_ERROR); |
95 | 95 | } |
@@ -46,7 +46,8 @@ discard block |
||
46 | 46 | $object = self::_load_backend($backend, $params); |
47 | 47 | debug_add('Using backend ' . $backend); |
48 | 48 | return $object; |
49 | - } catch (midcom_error $e) { |
|
49 | + } |
|
50 | + catch (midcom_error $e) { |
|
50 | 51 | debug_add('Failed to load backend ' . $backend . ', message:' . $e->getMessage()); |
51 | 52 | } |
52 | 53 | } |
@@ -76,7 +77,8 @@ discard block |
||
76 | 77 | $this->mail($message); |
77 | 78 | $this->error = null; |
78 | 79 | return true; |
79 | - } catch (Exception $e) { |
|
80 | + } |
|
81 | + catch (Exception $e) { |
|
80 | 82 | $this->error = $e->getMessage(); |
81 | 83 | return false; |
82 | 84 | } |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | |
237 | 237 | private function _convert_to_localdata() : string |
238 | 238 | { |
239 | - return "var " . $this->_grid->get_identifier() . '_entries = ' . json_encode($this->get_rows()) . ";\n"; |
|
239 | + return "var " . $this->_grid->get_identifier() . '_entries = ' . json_encode($this->get_rows()) . ";\n"; |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | private function _render_json() |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | $this->_sort_field = $query['sidx']; |
270 | 270 | $this->_sort_direction = strtoupper($query['sord'] ?? 'ASC'); |
271 | 271 | } |
272 | - if ( !empty($query['_search']) |
|
272 | + if (!empty($query['_search']) |
|
273 | 273 | && $query['_search'] === 'true') { |
274 | 274 | foreach ($query as $field => $value) { |
275 | 275 | if (in_array($field, ['_search', 'nd', 'page', 'rows', 'sidx', 'sord'])) { |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | |
295 | 295 | $this->_total_rows = $query->count(); |
296 | 296 | |
297 | - if ( $this->_datatype == 'json' |
|
297 | + if ($this->_datatype == 'json' |
|
298 | 298 | && !empty($this->_results_per_page)) { |
299 | 299 | $query->set_limit($this->_results_per_page); |
300 | 300 | if (!empty($this->_offset)) { |