Completed
Push — develop ( a3ab64...524863 )
by Daniel
13:34
created
model/blocks/entity/block.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@
 block discarded – undo
141 141
 	 */
142 142
 	public function set_class($class)
143 143
 	{
144
-		$this->class = ($class) ? ' ' . $class : '';
144
+		$this->class = ($class) ? ' '.$class : '';
145 145
 		return $this;
146 146
 	}
147 147
 
Please login to merge, or discard this patch.
services/blocks/display.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 	 */
142 142
 	protected function toggle_edit_mode()
143 143
 	{
144
-		$edit_mode = $this->request->variable($this->config['cookie_name'] . '_sm_edit_mode', false, false, \phpbb\request\request_interface::COOKIE);
144
+		$edit_mode = $this->request->variable($this->config['cookie_name'].'_sm_edit_mode', false, false, \phpbb\request\request_interface::COOKIE);
145 145
 
146 146
 		if ($this->request->is_set('edit_mode'))
147 147
 		{
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 				);
199 199
 			}
200 200
 
201
-			$u_edit_mode = append_sid(generate_board_url() . '/' . ltrim(rtrim(build_url(array('edit_mode', 'style')), '?'), './../'), 'edit_mode=' . (int) !$edit_mode);
201
+			$u_edit_mode = append_sid(generate_board_url().'/'.ltrim(rtrim(build_url(array('edit_mode', 'style')), '?'), './../'), 'edit_mode='.(int) !$edit_mode);
202 202
 		}
203 203
 		else
204 204
 		{
Please login to merge, or discard this patch.
services/blocks/cfg_handler.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
 		if (!function_exists('build_cfg_template'))
64 64
 		{
65
-			include($this->phpbb_root_path . 'includes/functions_acp.' . $this->php_ext); // @codeCoverageIgnore
65
+			include($this->phpbb_root_path.'includes/functions_acp.'.$this->php_ext); // @codeCoverageIgnore
66 66
 		}
67 67
 
68 68
 		// We fake this class as it is needed by the build_cfg_template function
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 		// @codeCoverageIgnoreStart
84 84
 		if (!function_exists('validate_config_vars'))
85 85
 		{
86
-			include($this->phpbb_root_path . 'includes/functions_acp.' . $this->php_ext);
86
+			include($this->phpbb_root_path.'includes/functions_acp.'.$this->php_ext);
87 87
 		}
88 88
 		// @codeCoverageIgnoreEnd
89 89
 
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 		$vars['append'] = $this->append_field($vars);
172 172
 
173 173
 		$type = explode(':', $vars['type']);
174
-		$method = 'prep_' . $type[0] . '_field_for_display';
174
+		$method = 'prep_'.$type[0].'_field_for_display';
175 175
 
176 176
 		if (is_callable(array($this, $method)))
177 177
 		{
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
 		$l_explain = '';
216 216
 		if (!empty($vars['explain']))
217 217
 		{
218
-			$l_explain = (isset($vars['lang_explain'])) ? $this->translator->lang($vars['lang_explain']) : $this->translator->lang($vars['lang'] . '_EXPLAIN');
218
+			$l_explain = (isset($vars['lang_explain'])) ? $this->translator->lang($vars['lang_explain']) : $this->translator->lang($vars['lang'].'_EXPLAIN');
219 219
 		}
220 220
 
221 221
 		return $l_explain;
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
 	{
316 316
 		$this->prep_checkbox_field_for_display($vars, $type, $field);
317 317
 
318
-		$vars['method'] ='build_multi_select';
318
+		$vars['method'] = 'build_multi_select';
319 319
 	}
320 320
 
321 321
 	/**
Please login to merge, or discard this patch.
blocks/custom.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 		$content = $this->request->variable('content', '', true);
70 70
 		$cblocks = $this->get_custom_blocks();
71 71
 
72
-		$sql_data =	$this->get_default_fields($block_id);
72
+		$sql_data = $this->get_default_fields($block_id);
73 73
 		$sql_data['block_content'] = $content;
74 74
 
75 75
 		generate_text_for_storage($sql_data['block_content'], $sql_data['bbcode_uid'], $sql_data['bbcode_bitfield'], $sql_data['bbcode_options'], true, true, true);
@@ -130,11 +130,11 @@  discard block
 block discarded – undo
130 130
 	{
131 131
 		if (!$block_exists)
132 132
 		{
133
-			$sql = 'INSERT INTO ' . $this->cblocks_table . ' ' . $this->db->sql_build_array('INSERT', $sql_data);
133
+			$sql = 'INSERT INTO '.$this->cblocks_table.' '.$this->db->sql_build_array('INSERT', $sql_data);
134 134
 		}
135 135
 		else
136 136
 		{
137
-			$sql = 'UPDATE ' . $this->cblocks_table . ' SET ' . $this->db->sql_build_array('UPDATE', $sql_data) . ' WHERE block_id = ' . (int) $sql_data['block_id'];
137
+			$sql = 'UPDATE '.$this->cblocks_table.' SET '.$this->db->sql_build_array('UPDATE', $sql_data).' WHERE block_id = '.(int) $sql_data['block_id'];
138 138
 		}
139 139
 		$this->db->sql_query($sql);
140 140
 		$this->cache->destroy('pt_cblocks');
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
 		if ($edit_mode !== false)
152 152
 		{
153 153
 			decode_message($cblock['block_content'], $cblock['bbcode_uid']);
154
-			$content = '<div id="block-editor-' . $cblock['block_id'] . '" class="editable editable-block" data-service="blitze.sitemaker.block.custom" data-method="edit" data-raw="' . $cblock['block_content'] . '">' . $content . '</div>';
154
+			$content = '<div id="block-editor-'.$cblock['block_id'].'" class="editable editable-block" data-service="blitze.sitemaker.block.custom" data-method="edit" data-raw="'.$cblock['block_content'].'">'.$content.'</div>';
155 155
 		}
156 156
 	}
157 157
 
Please login to merge, or discard this patch.
acp/settings_module.php 2 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -93,16 +93,16 @@  discard block
 block discarded – undo
93 93
 
94 94
 		$layouts = $this->get_layouts();
95 95
 
96
-        $this->template->assign_vars(array(
97
-            'u_action'			=> $this->u_action,
96
+		$this->template->assign_vars(array(
97
+			'u_action'			=> $this->u_action,
98 98
 			'icon_picker'		=> $this->icon->picker(),
99
-            'forum_icon'		=> $this->config['sm_forum_icon'],
100
-            'show_forum_nav'	=> (bool) $this->config['sm_show_forum_nav'],
99
+			'forum_icon'		=> $this->config['sm_forum_icon'],
100
+			'show_forum_nav'	=> (bool) $this->config['sm_show_forum_nav'],
101 101
 			'hide_login'		=> (bool) $this->config['sm_hide_login'],
102 102
 			'hide_online'		=> (bool) $this->config['sm_hide_online'],
103 103
 			'hide_birthday'		=> (bool) $this->config['sm_hide_birthday'],
104
-            'styles'			=> $this->get_styles_data($layouts),
105
-            'layouts'			=> $layouts,
104
+			'styles'			=> $this->get_styles_data($layouts),
105
+			'layouts'			=> $layouts,
106 106
 		));
107 107
 
108 108
 		$this->util->add_assets(array(
@@ -119,21 +119,21 @@  discard block
 block discarded – undo
119 119
 	 */
120 120
 	protected function save_settings($form_key)
121 121
 	{
122
-        if ($this->request->is_set_post('submit'))
123
-        {
124
-            $this->check_form_key($form_key);
122
+		if ($this->request->is_set_post('submit'))
123
+		{
124
+			$this->check_form_key($form_key);
125 125
 
126 126
 			$layout_prefs = $this->request->variable('layouts', array(0 => array('' => '')));
127
-            $this->config_text->set('sm_layout_prefs', json_encode($layout_prefs));
127
+			$this->config_text->set('sm_layout_prefs', json_encode($layout_prefs));
128 128
 
129
-            $this->config->set('sm_hide_login', $this->request->variable('hide_login', 0));
130
-            $this->config->set('sm_hide_online', $this->request->variable('hide_online', 0));
131
-            $this->config->set('sm_hide_birthday', $this->request->variable('hide_birthday', 0));
132
-            $this->config->set('sm_show_forum_nav', $this->request->variable('show_forum_nav', 0));
133
-            $this->config->set('sm_forum_icon', $this->request->variable('forum_icon', ''));
129
+			$this->config->set('sm_hide_login', $this->request->variable('hide_login', 0));
130
+			$this->config->set('sm_hide_online', $this->request->variable('hide_online', 0));
131
+			$this->config->set('sm_hide_birthday', $this->request->variable('hide_birthday', 0));
132
+			$this->config->set('sm_show_forum_nav', $this->request->variable('show_forum_nav', 0));
133
+			$this->config->set('sm_forum_icon', $this->request->variable('forum_icon', ''));
134 134
 
135
-            $this->trigger_error($this->translator->lang('SETTINGS_SAVED') . adm_back_link($this->u_action));
136
-        }
135
+			$this->trigger_error($this->translator->lang('SETTINGS_SAVED') . adm_back_link($this->u_action));
136
+		}
137 137
 	}
138 138
 
139 139
 	/**
@@ -227,9 +227,9 @@  discard block
 block discarded – undo
227 227
 	protected function check_form_key($form_key)
228 228
 	{
229 229
 		if (!check_form_key($form_key))
230
-        {
231
-            $this->trigger_error('FORM_INVALID');
232
-        }
230
+		{
231
+			$this->trigger_error('FORM_INVALID');
232
+		}
233 233
 	}
234 234
 
235 235
 	/**
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
             $this->config->set('sm_show_forum_nav', $this->request->variable('show_forum_nav', 0));
133 133
             $this->config->set('sm_forum_icon', $this->request->variable('forum_icon', ''));
134 134
 
135
-            $this->trigger_error($this->translator->lang('SETTINGS_SAVED') . adm_back_link($this->u_action));
135
+            $this->trigger_error($this->translator->lang('SETTINGS_SAVED').adm_back_link($this->u_action));
136 136
         }
137 137
 	}
138 138
 
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
 	{
145 145
 		$style_prefs = json_decode($this->config_text->get('sm_layout_prefs'), true);
146 146
 
147
-		$result = $this->db->sql_query('SELECT style_id, style_name FROM ' . STYLES_TABLE);
147
+		$result = $this->db->sql_query('SELECT style_id, style_name FROM '.STYLES_TABLE);
148 148
 
149 149
 		$styles = array();
150 150
 		while ($row = $this->db->sql_fetchrow($result))
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
 		foreach ($layouts as $name => $path)
198 198
 		{
199 199
 			$selected = ($path == $pref) ? ' selected="selected"' : '';
200
-			$options .= '<option value="' . $path . '"' . $selected . '>' . $this->translator->lang('LAYOUT_' . strtoupper($name)) . '</option>';
200
+			$options .= '<option value="'.$path.'"'.$selected.'>'.$this->translator->lang('LAYOUT_'.strtoupper($name)).'</option>';
201 201
 		}
202 202
 
203 203
 		return $options;
@@ -211,11 +211,11 @@  discard block
 block discarded – undo
211 211
 	{
212 212
 		$views = array('basic', 'boxed', 'simple');
213 213
 
214
-		$options = '<option value="">' . $this->translator->lang('BLOCK_VIEW_DEFAULT') . '</option>';
214
+		$options = '<option value="">'.$this->translator->lang('BLOCK_VIEW_DEFAULT').'</option>';
215 215
 		foreach ($views as $view)
216 216
 		{
217 217
 			$selected = ($view == $pref) ? ' selected="selected"' : '';
218
-			$options .= '<option value="' . $view . '"' . $selected . '>' . $this->translator->lang('BLOCK_VIEW_' . strtoupper($view)) . '</option>';
218
+			$options .= '<option value="'.$view.'"'.$selected.'>'.$this->translator->lang('BLOCK_VIEW_'.strtoupper($view)).'</option>';
219 219
 		}
220 220
 
221 221
 		return $options;
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
 			$path = dirname($path);
258 258
 			$name = basename($path);
259 259
 
260
-			$layouts[$name] = $this->phpbb_root_path . $path . '/';
260
+			$layouts[$name] = $this->phpbb_root_path.$path.'/';
261 261
 		}
262 262
 
263 263
 		return $layouts;
Please login to merge, or discard this patch.
event/listener.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -117,9 +117,9 @@  discard block
 block discarded – undo
117 117
 	public function load_permission_language(\phpbb\event\data $event)
118 118
 	{
119 119
 		$permissions = $event['permissions'];
120
-		$permissions['a_sm_settings']	= array('lang' => 'ACL_A_SM_SETTINGS', 'cat' => 'misc');
121
-		$permissions['a_sm_manage_blocks']	= array('lang' => 'ACL_A_SM_MANAGE_BLOCKS', 'cat' => 'misc');
122
-		$permissions['a_sm_manage_menus']	= array('lang' => 'ACL_A_SM_MANAGE_MENUS', 'cat' => 'misc');
120
+		$permissions['a_sm_settings'] = array('lang' => 'ACL_A_SM_SETTINGS', 'cat' => 'misc');
121
+		$permissions['a_sm_manage_blocks'] = array('lang' => 'ACL_A_SM_MANAGE_BLOCKS', 'cat' => 'misc');
122
+		$permissions['a_sm_manage_menus'] = array('lang' => 'ACL_A_SM_MANAGE_MENUS', 'cat' => 'misc');
123 123
 		$event['permissions'] = $permissions;
124 124
 	}
125 125
 
@@ -193,13 +193,13 @@  discard block
 block discarded – undo
193 193
 	 */
194 194
 	public function set_startpage(\phpbb\event\data $event)
195 195
 	{
196
-		if ($this->user->page['page_name'] == 'index.' . $this->php_ext && !$this->is_startpage && ($controller_object = $this->get_startpage_controller()) !== false)
196
+		if ($this->user->page['page_name'] == 'index.'.$this->php_ext && !$this->is_startpage && ($controller_object = $this->get_startpage_controller()) !== false)
197 197
 		{
198 198
 			$method = $this->config['sitemaker_startpage_method'];
199 199
 			$this->is_startpage = true;
200 200
 
201 201
 			$controller_dir = explode('\\', get_class($controller_object));
202
-			$controller_style_dir = 'ext/' . $controller_dir[0] . '/' . $controller_dir[1] . '/styles';
202
+			$controller_style_dir = 'ext/'.$controller_dir[0].'/'.$controller_dir[1].'/styles';
203 203
 			$this->template->set_style(array($controller_style_dir, 'styles'));
204 204
 
205 205
 			$arguments = explode('/', $this->config['sitemaker_startpage_params']);
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 	 */
221 221
 	public function add_viewonline_location(\phpbb\event\data $event)
222 222
 	{
223
-		if ($event['on_page'][1] == 'app' && strrpos($event['row']['session_page'], 'app.' . $this->php_ext . '/forum') === 0)
223
+		if ($event['on_page'][1] == 'app' && strrpos($event['row']['session_page'], 'app.'.$this->php_ext.'/forum') === 0)
224 224
 		{
225 225
 			$event['location'] = $this->translator->lang('FORUM_INDEX');
226 226
 			$event['location_url'] = $this->phpbb_container->get('controller.helper')->route('blitze_sitemaker_forum');
Please login to merge, or discard this patch.
exception/base.php 2 patches
Indentation   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -16,23 +16,23 @@  discard block
 block discarded – undo
16 16
 class base extends \Exception
17 17
 {
18 18
 	/**
19
-	* Null if the message is a string, array if the message was submitted as an array
20
-	* @var string|array
21
-	*/
19
+	 * Null if the message is a string, array if the message was submitted as an array
20
+	 * @var string|array
21
+	 */
22 22
 	protected $message_full;
23 23
 
24 24
 	protected $previous;
25 25
 
26 26
 	/**
27
-	* Constructor
28
-	*
29
-	* Different from normal exceptions in that we do not enforce $message to be a string.
30
-	*
31
-	* @param string|array $message
32
-	* @param int $code
33
-	* @param \Exception $previous
34
-	* @access public
35
-	*/
27
+	 * Constructor
28
+	 *
29
+	 * Different from normal exceptions in that we do not enforce $message to be a string.
30
+	 *
31
+	 * @param string|array $message
32
+	 * @param int $code
33
+	 * @param \Exception $previous
34
+	 * @access public
35
+	 */
36 36
 	public function __construct($message = null, $code = 0, \Exception $previous = null)
37 37
 	{
38 38
 		// We're slightly changing the way exceptions work
@@ -53,18 +53,18 @@  discard block
 block discarded – undo
53 53
 	}
54 54
 
55 55
 	/**
56
-	* Translate all portions of the message sent to the exception
57
-	*
58
-	* Goes through each element of the array and tries to translate them
59
-	*
60
-	* @param \phpbb\language\language $translator
61
-	* @param string|array $message_portions The message portions to translate
62
-	* @param string|null $parent_message Send a string to translate all of the
63
-	*     portions with the parent message (typically used to format a string
64
-	*     with the given message portions). Null to ignore. Default: Null
65
-	* @return array|string Array if $parent_message === null else a string
66
-	* @access protected
67
-	*/
56
+	 * Translate all portions of the message sent to the exception
57
+	 *
58
+	 * Goes through each element of the array and tries to translate them
59
+	 *
60
+	 * @param \phpbb\language\language $translator
61
+	 * @param string|array $message_portions The message portions to translate
62
+	 * @param string|null $parent_message Send a string to translate all of the
63
+	 *     portions with the parent message (typically used to format a string
64
+	 *     with the given message portions). Null to ignore. Default: Null
65
+	 * @return array|string Array if $parent_message === null else a string
66
+	 * @access protected
67
+	 */
68 68
 	protected function translate_portions(\phpbb\language\language $translator, $message_portions, $parent_message = null)
69 69
 	{
70 70
 		// Make sure our language file has been loaded
@@ -106,12 +106,12 @@  discard block
 block discarded – undo
106 106
 	}
107 107
 
108 108
 	/**
109
-	* Add our language file
110
-	*
111
-	* @param \phpbb\language\language $translator
112
-	* @return null
113
-	* @access public
114
-	*/
109
+	 * Add our language file
110
+	 *
111
+	 * @param \phpbb\language\language $translator
112
+	 * @return null
113
+	 * @access public
114
+	 */
115 115
 	public function add_lang(\phpbb\language\language $translator)
116 116
 	{
117 117
 		static $is_loaded = false;
@@ -130,15 +130,15 @@  discard block
 block discarded – undo
130 130
 	}
131 131
 
132 132
 	/**
133
-	* Output a string of this error message
134
-	*
135
-	* This will hopefully be never called, always catch the expected exceptions
136
-	* and call get_message to translate them into an error that a user can
137
-	* understand
138
-	*
139
-	* @return string
140
-	* @access public
141
-	*/
133
+	 * Output a string of this error message
134
+	 *
135
+	 * This will hopefully be never called, always catch the expected exceptions
136
+	 * and call get_message to translate them into an error that a user can
137
+	 * understand
138
+	 *
139
+	 * @return string
140
+	 * @access public
141
+	 */
142 142
 	public function __toString()
143 143
 	{
144 144
 		return (is_array($this->message_full)) ? var_export($this->message_full, true) : (string) $this->message_full;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,10 +80,10 @@
 block discarded – undo
80 80
 		foreach ($message_portions as &$message)
81 81
 		{
82 82
 			// Attempt to translate each portion
83
-			$translated_message = $translator->lang('EXCEPTION_' . $message);
83
+			$translated_message = $translator->lang('EXCEPTION_'.$message);
84 84
 
85 85
 			// Check if translating did anything
86
-			if ($translated_message !== 'EXCEPTION_' . $message)
86
+			if ($translated_message !== 'EXCEPTION_'.$message)
87 87
 			{
88 88
 				// It did, so replace message with the translated version
89 89
 				$message = $translated_message;
Please login to merge, or discard this patch.