@@ -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)) { |