@@ -20,7 +20,7 @@ |
||
| 20 | 20 | |
| 21 | 21 | /** @type \blitze\sitemaker\model\menus\entity\menu $entity */ |
| 22 | 22 | $entity = $menu_mapper->create_entity(array( |
| 23 | - 'menu_name' => $this->translator->lang('MENU') . '-' . mt_rand(1000, 9999), |
|
| 23 | + 'menu_name' => $this->translator->lang('MENU').'-'.mt_rand(1000, 9999), |
|
| 24 | 24 | )); |
| 25 | 25 | |
| 26 | 26 | $entity = $menu_mapper->save($entity); |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | */ |
| 47 | 47 | public function create($action) |
| 48 | 48 | { |
| 49 | - $action_class = 'blitze\\sitemaker\\services\\menus\\action\\' . $action; |
|
| 49 | + $action_class = 'blitze\\sitemaker\\services\\menus\\action\\'.$action; |
|
| 50 | 50 | |
| 51 | 51 | if (!class_exists($action_class)) |
| 52 | 52 | { |
@@ -77,10 +77,10 @@ |
||
| 77 | 77 | protected function get_attachment_sql(array $attach_ids, array $allowed_extensions, $exclude_in_message, $order_by) |
| 78 | 78 | { |
| 79 | 79 | return 'SELECT * |
| 80 | - FROM ' . ATTACHMENTS_TABLE . ' |
|
| 81 | - WHERE ' . $this->db->sql_in_set('post_msg_id', $attach_ids) . |
|
| 82 | - (($exclude_in_message) ? ' AND in_message = 0' : '') . |
|
| 83 | - (sizeof($allowed_extensions) ? ' AND ' . $this->db->sql_in_set('extension', $allowed_extensions) : '') . ' |
|
| 80 | + FROM ' . ATTACHMENTS_TABLE.' |
|
| 81 | + WHERE ' . $this->db->sql_in_set('post_msg_id', $attach_ids). |
|
| 82 | + (($exclude_in_message) ? ' AND in_message = 0' : ''). |
|
| 83 | + (sizeof($allowed_extensions) ? ' AND '.$this->db->sql_in_set('extension', $allowed_extensions) : '').' |
|
| 84 | 84 | ORDER BY ' . $order_by; |
| 85 | 85 | } |
| 86 | 86 | } |
@@ -54,7 +54,7 @@ |
||
| 54 | 54 | |
| 55 | 55 | if (!class_exists('acp_forums')) |
| 56 | 56 | { |
| 57 | - include($this->phpbb_root_path . 'includes/acp/acp_forums.' . $this->php_ext); |
|
| 57 | + include($this->phpbb_root_path.'includes/acp/acp_forums.'.$this->php_ext); |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | $translator->add_lang('acp/forums'); |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | // @codeCoverageIgnoreStart |
| 23 | 23 | if (!function_exists('make_forum_select')) |
| 24 | 24 | { |
| 25 | - include($phpbb_root_path . 'includes/functions_admin.' . $php_ext); // @codeCoverageIgnore |
|
| 25 | + include($phpbb_root_path.'includes/functions_admin.'.$php_ext); // @codeCoverageIgnore |
|
| 26 | 26 | } |
| 27 | 27 | // @codeCoverageIgnoreEnd |
| 28 | 28 | } |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | $forum_options = array('' => 'ALL'); |
| 44 | 44 | foreach ($forumlist as $row) |
| 45 | 45 | { |
| 46 | - $forum_options[$row['forum_id']] = $row['padding'] . $row['forum_name']; |
|
| 46 | + $forum_options[$row['forum_id']] = $row['padding'].$row['forum_name']; |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | return $forum_options; |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | |
| 143 | 143 | if (in_array($topic_type, array(POST_STICKY, POST_ANNOUNCE))) |
| 144 | 144 | { |
| 145 | - $this->store['sql_array']['WHERE'][] = '(t.topic_time_limit > 0 AND (t.topic_time + t.topic_time_limit) < ' . time() . ')'; |
|
| 145 | + $this->store['sql_array']['WHERE'][] = '(t.topic_time_limit > 0 AND (t.topic_time + t.topic_time_limit) < '.time().')'; |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | return $this; |
@@ -207,12 +207,12 @@ discard block |
||
| 207 | 207 | $this->store['sql_array']['SELECT'][] = 'tt.mark_time, ft.mark_time as forum_mark_time'; |
| 208 | 208 | $this->store['sql_array']['LEFT_JOIN'][] = array( |
| 209 | 209 | 'FROM' => array(TOPICS_TRACK_TABLE => 'tt'), |
| 210 | - 'ON' => 'tt.user_id = ' . $this->user->data['user_id'] . ' AND t.topic_id = tt.topic_id' |
|
| 210 | + 'ON' => 'tt.user_id = '.$this->user->data['user_id'].' AND t.topic_id = tt.topic_id' |
|
| 211 | 211 | ); |
| 212 | 212 | |
| 213 | 213 | $this->store['sql_array']['LEFT_JOIN'][] = array( |
| 214 | 214 | 'FROM' => array(FORUMS_TRACK_TABLE => 'ft'), |
| 215 | - 'ON' => 'ft.user_id = ' . $this->user->data['user_id'] . ' AND t.forum_id = ft.forum_id' |
|
| 215 | + 'ON' => 'ft.user_id = '.$this->user->data['user_id'].' AND t.forum_id = ft.forum_id' |
|
| 216 | 216 | ); |
| 217 | 217 | } |
| 218 | 218 | |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | { |
| 232 | 232 | if ($unix_start_time && $unix_stop_time) |
| 233 | 233 | { |
| 234 | - $this->store['sql_array']['WHERE'][] = (($mode == 'topic') ? 't.topic_time' : 'p.post_time') . " BETWEEN $unix_start_time AND $unix_stop_time"; |
|
| 234 | + $this->store['sql_array']['WHERE'][] = (($mode == 'topic') ? 't.topic_time' : 'p.post_time')." BETWEEN $unix_start_time AND $unix_stop_time"; |
|
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | return $this; |
@@ -263,7 +263,7 @@ discard block |
||
| 263 | 263 | */ |
| 264 | 264 | public function set_sorting($sort_key, $sort_dir = 'DESC') |
| 265 | 265 | { |
| 266 | - $this->store['sql_array']['ORDER_BY'] = $sort_key . ' ' . $sort_dir; |
|
| 266 | + $this->store['sql_array']['ORDER_BY'] = $sort_key.' '.$sort_dir; |
|
| 267 | 267 | |
| 268 | 268 | return $this; |
| 269 | 269 | } |
@@ -324,7 +324,7 @@ discard block |
||
| 324 | 324 | { |
| 325 | 325 | if (!empty($column_id)) |
| 326 | 326 | { |
| 327 | - $this->store['sql_array']['WHERE'][] = (is_array($column_id)) ? $this->db->sql_in_set($column, $column_id) : $column . ' = ' . (int) $column_id; |
|
| 327 | + $this->store['sql_array']['WHERE'][] = (is_array($column_id)) ? $this->db->sql_in_set($column, $column_id) : $column.' = '.(int) $column_id; |
|
| 328 | 328 | } |
| 329 | 329 | } |
| 330 | 330 | |
@@ -335,7 +335,7 @@ discard block |
||
| 335 | 335 | { |
| 336 | 336 | if ($check_visibility) |
| 337 | 337 | { |
| 338 | - $this->store['sql_array']['WHERE'][] = 't.topic_time <= ' . time(); |
|
| 338 | + $this->store['sql_array']['WHERE'][] = 't.topic_time <= '.time(); |
|
| 339 | 339 | $this->store['sql_array']['WHERE'][] = $this->content_visibility->get_global_visibility_sql('topic', $this->ex_fid_ary, 't.'); |
| 340 | 340 | } |
| 341 | 341 | } |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | |
| 76 | 76 | if (sizeof($query_ids)) |
| 77 | 77 | { |
| 78 | - $sql_where .= (($sql_where) ? ' AND ' : '') . $this->db->sql_in_set('user_id', $query_ids); |
|
| 78 | + $sql_where .= (($sql_where) ? ' AND ' : '').$this->db->sql_in_set('user_id', $query_ids); |
|
| 79 | 79 | $this->query($sql_where); |
| 80 | 80 | } |
| 81 | 81 | |
@@ -150,8 +150,8 @@ discard block |
||
| 150 | 150 | public function get_profile_fields() |
| 151 | 151 | { |
| 152 | 152 | $sql = 'SELECT l.lang_name, f.field_ident |
| 153 | - FROM ' . PROFILE_LANG_TABLE . ' l, ' . PROFILE_FIELDS_TABLE . ' f |
|
| 154 | - WHERE l.lang_id = ' . $this->user->get_iso_lang_id() . ' |
|
| 153 | + FROM ' . PROFILE_LANG_TABLE.' l, '.PROFILE_FIELDS_TABLE.' f |
|
| 154 | + WHERE l.lang_id = ' . $this->user->get_iso_lang_id().' |
|
| 155 | 155 | AND f.field_active = 1 |
| 156 | 156 | AND f.field_no_view = 0 |
| 157 | 157 | AND f.field_hide = 0 |
@@ -203,7 +203,7 @@ discard block |
||
| 203 | 203 | */ |
| 204 | 204 | protected function get_search_url($user_id) |
| 205 | 205 | { |
| 206 | - return ($this->auth->acl_get('u_search')) ? append_sid($this->phpbb_root_path . 'search.' . $this->php_ext, "author_id=$user_id&sr=posts") : ''; |
|
| 206 | + return ($this->auth->acl_get('u_search')) ? append_sid($this->phpbb_root_path.'search.'.$this->php_ext, "author_id=$user_id&sr=posts") : ''; |
|
| 207 | 207 | } |
| 208 | 208 | |
| 209 | 209 | /** |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | { |
| 215 | 215 | if (!function_exists('phpbb_get_user_rank')) |
| 216 | 216 | { |
| 217 | - include($this->phpbb_root_path . 'includes/functions_display.' . $this->php_ext); |
|
| 217 | + include($this->phpbb_root_path.'includes/functions_display.'.$this->php_ext); |
|
| 218 | 218 | } |
| 219 | 219 | |
| 220 | 220 | $user_rank_data = phpbb_get_user_rank($row, $row['user_posts']); |
@@ -288,8 +288,8 @@ discard block |
||
| 288 | 288 | protected function get_sql_statement($sql_where = '', $order_by = '') |
| 289 | 289 | { |
| 290 | 290 | return 'SELECT user_id, username, user_type, user_colour, user_avatar, user_avatar_type, user_avatar_height, user_avatar_width, user_regdate, user_lastvisit, user_birthday, user_posts, user_rank, user_allow_viewemail, user_allow_pm, user_jabber, user_inactive_reason |
| 291 | - FROM ' . USERS_TABLE . |
|
| 292 | - (($sql_where) ? ' WHERE ' . $sql_where : '') . |
|
| 293 | - (($order_by) ? ' ORDER BY ' . $order_by : ''); |
|
| 291 | + FROM ' . USERS_TABLE. |
|
| 292 | + (($sql_where) ? ' WHERE '.$sql_where : ''). |
|
| 293 | + (($order_by) ? ' ORDER BY '.$order_by : ''); |
|
| 294 | 294 | } |
| 295 | 295 | } |
@@ -45,11 +45,11 @@ |
||
| 45 | 45 | $curr_key = (int) array_search($settings['current_user'], $userlist); |
| 46 | 46 | |
| 47 | 47 | // Remove the invalid user from the list |
| 48 | - $new_list = str_replace($settings['current_user'] . ',', '', $settings['userlist'] . ','); |
|
| 48 | + $new_list = str_replace($settings['current_user'].',', '', $settings['userlist'].','); |
|
| 49 | 49 | $new_list = trim($new_list, ','); |
| 50 | 50 | |
| 51 | 51 | $new_userlist = self::_get_userlist($new_list); |
| 52 | - $current_user =& $new_userlist[$curr_key - 1]; |
|
| 52 | + $current_user = & $new_userlist[$curr_key - 1]; |
|
| 53 | 53 | $settings['current_user'] = (int) $current_user; |
| 54 | 54 | $settings['userlist'] = trim($new_list); |
| 55 | 55 | $settings['last_changed'] = 0; |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | */ |
| 97 | 97 | protected function get_email_url(array $row) |
| 98 | 98 | { |
| 99 | - return ($this->email_form_allowed) ? append_sid("{$this->phpbb_root_path}memberlist.{$this->php_ext}", 'mode=email&u=' . $row['user_id']) : (($this->mailto_allowed) ? 'mailto:' . $row['user_email'] : ''); |
|
| 99 | + return ($this->email_form_allowed) ? append_sid("{$this->phpbb_root_path}memberlist.{$this->php_ext}", 'mode=email&u='.$row['user_id']) : (($this->mailto_allowed) ? 'mailto:'.$row['user_email'] : ''); |
|
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | /** |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | $jabber = array( |
| 128 | 128 | 'ID' => 'jabber', |
| 129 | 129 | 'NAME' => $this->translator->lang('JABBER'), |
| 130 | - 'U_CONTACT' => append_sid("{$this->phpbb_root_path}memberlist.{$this->php_ext}", 'mode=contact&action=jabber&u=' . $row['user_id']), |
|
| 130 | + 'U_CONTACT' => append_sid("{$this->phpbb_root_path}memberlist.{$this->php_ext}", 'mode=contact&action=jabber&u='.$row['user_id']), |
|
| 131 | 131 | ); |
| 132 | 132 | } |
| 133 | 133 | |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | $pm = array( |
| 157 | 157 | 'ID' => 'pm', |
| 158 | 158 | 'NAME' => $this->translator->lang('SEND_PRIVATE_MESSAGE'), |
| 159 | - 'U_CONTACT' => append_sid("{$this->phpbb_root_path}ucp.{$this->php_ext}", 'i=pm&mode=compose&u=' . $row['user_id']), |
|
| 159 | + 'U_CONTACT' => append_sid("{$this->phpbb_root_path}ucp.{$this->php_ext}", 'i=pm&mode=compose&u='.$row['user_id']), |
|
| 160 | 160 | ); |
| 161 | 161 | } |
| 162 | 162 | |
@@ -219,7 +219,7 @@ discard block |
||
| 219 | 219 | { |
| 220 | 220 | if (!function_exists('phpbb_get_banned_user_ids')) |
| 221 | 221 | { |
| 222 | - include($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext); |
|
| 222 | + include($this->phpbb_root_path.'includes/functions_user.'.$this->php_ext); |
|
| 223 | 223 | } |
| 224 | 224 | |
| 225 | 225 | return phpbb_get_banned_user_ids($user_ids, false); |