GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#1805)
by
unknown
18:31
created
classes/db/DBMysql_innodb.class.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
 	 * opt : notnull, default, size\n
132 132
 	 * index : primary key, index, unique\n
133 133
 	 * @param string $xml_doc xml schema contents
134
-	 * @return void|object
134
+	 * @return null|false
135 135
 	 */
136 136
 	function _createTable($xml_doc)
137 137
 	{
Please login to merge, or discard this patch.
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 	{
56 56
 		$connection = $this->_getConnection('master');
57 57
 
58
-		if(!$transactionLevel)
58
+		if (!$transactionLevel)
59 59
 		{
60 60
 			$this->_query("START TRANSACTION", $connection);
61 61
 		}
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 
78 78
 		$point = $transactionLevel - 1;
79 79
 
80
-		if($point)
80
+		if ($point)
81 81
 		{
82 82
 			$this->_query("ROLLBACK TO SP" . $point, $connection);
83 83
 		}
@@ -109,14 +109,14 @@  discard block
 block discarded – undo
109 109
 	 */
110 110
 	function __query($query, $connection)
111 111
 	{
112
-		if(!$connection)
112
+		if (!$connection)
113 113
 		{
114 114
 			exit('XE cannot handle DB connection.');
115 115
 		}
116 116
 		// Run the query statement
117 117
 		$result = @mysql_query($query, $connection);
118 118
 		// Error Check
119
-		if(mysql_error($connection))
119
+		if (mysql_error($connection))
120 120
 		{
121 121
 			$this->setError(mysql_errno($connection), mysql_error($connection));
122 122
 		}
@@ -140,13 +140,13 @@  discard block
 block discarded – undo
140 140
 		$xml_obj = $oXml->parse($xml_doc);
141 141
 		// Create a table schema
142 142
 		$table_name = $xml_obj->table->attrs->name;
143
-		if($this->isTableExists($table_name))
143
+		if ($this->isTableExists($table_name))
144 144
 		{
145 145
 			return;
146 146
 		}
147 147
 		$table_name = $this->prefix . $table_name;
148 148
 
149
-		if(!is_array($xml_obj->table->column))
149
+		if (!is_array($xml_obj->table->column))
150 150
 		{
151 151
 			$columns[] = $xml_obj->table->column;
152 152
 		}
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 			$columns = $xml_obj->table->column;
156 156
 		}
157 157
 
158
-		foreach($columns as $column)
158
+		foreach ($columns as $column)
159 159
 		{
160 160
 			$name = $column->attrs->name;
161 161
 			$type = $column->attrs->type;
@@ -169,36 +169,36 @@  discard block
 block discarded – undo
169 169
 
170 170
 			$column_schema[] = sprintf('`%s` %s%s %s %s %s', $name, $this->column_type[$type], $size ? '(' . $size . ')' : '', isset($default) ? "default '" . $default . "'" : '', $notnull ? 'not null' : '', $auto_increment ? 'auto_increment' : '');
171 171
 
172
-			if($primary_key)
172
+			if ($primary_key)
173 173
 			{
174 174
 				$primary_list[] = $name;
175 175
 			}
176
-			else if($unique)
176
+			else if ($unique)
177 177
 			{
178 178
 				$unique_list[$unique][] = $name;
179 179
 			}
180
-			else if($index)
180
+			else if ($index)
181 181
 			{
182 182
 				$index_list[$index][] = $name;
183 183
 			}
184 184
 		}
185 185
 
186
-		if(count($primary_list))
186
+		if (count($primary_list))
187 187
 		{
188 188
 			$column_schema[] = sprintf("primary key (%s)", '`' . implode($primary_list, '`,`') . '`');
189 189
 		}
190 190
 
191
-		if(count($unique_list))
191
+		if (count($unique_list))
192 192
 		{
193
-			foreach($unique_list as $key => $val)
193
+			foreach ($unique_list as $key => $val)
194 194
 			{
195 195
 				$column_schema[] = sprintf("unique %s (%s)", $key, '`' . implode($val, '`,`') . '`');
196 196
 			}
197 197
 		}
198 198
 
199
-		if(count($index_list))
199
+		if (count($index_list))
200 200
 		{
201
-			foreach($index_list as $key => $val)
201
+			foreach ($index_list as $key => $val)
202 202
 			{
203 203
 				$column_schema[] = sprintf("index %s (%s)", $key, '`' . implode($val, '`,`') . '`');
204 204
 			}
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
 		$schema = sprintf('create table `%s` (%s%s) %s;', $this->addQuotes($table_name), "\n", implode($column_schema, ",\n"), "ENGINE = INNODB CHARACTER SET utf8 COLLATE utf8_general_ci");
208 208
 
209 209
 		$output = $this->_query($schema);
210
-		if(!$output)
210
+		if (!$output)
211 211
 		{
212 212
 			return false;
213 213
 		}
Please login to merge, or discard this patch.
Braces   +5 added lines, -10 removed lines patch added patch discarded remove patch
@@ -58,8 +58,7 @@  discard block
 block discarded – undo
58 58
 		if(!$transactionLevel)
59 59
 		{
60 60
 			$this->_query("START TRANSACTION", $connection);
61
-		}
62
-		else
61
+		} else
63 62
 		{
64 63
 			$this->_query("SAVEPOINT SP" . $transactionLevel, $connection);
65 64
 		}
@@ -80,8 +79,7 @@  discard block
 block discarded – undo
80 79
 		if($point)
81 80
 		{
82 81
 			$this->_query("ROLLBACK TO SP" . $point, $connection);
83
-		}
84
-		else
82
+		} else
85 83
 		{
86 84
 			$this->_query("ROLLBACK", $connection);
87 85
 		}
@@ -149,8 +147,7 @@  discard block
 block discarded – undo
149 147
 		if(!is_array($xml_obj->table->column))
150 148
 		{
151 149
 			$columns[] = $xml_obj->table->column;
152
-		}
153
-		else
150
+		} else
154 151
 		{
155 152
 			$columns = $xml_obj->table->column;
156 153
 		}
@@ -172,12 +169,10 @@  discard block
 block discarded – undo
172 169
 			if($primary_key)
173 170
 			{
174 171
 				$primary_list[] = $name;
175
-			}
176
-			else if($unique)
172
+			} else if($unique)
177 173
 			{
178 174
 				$unique_list[$unique][] = $name;
179
-			}
180
-			else if($index)
175
+			} else if($index)
181 176
 			{
182 177
 				$index_list[$index][] = $name;
183 178
 			}
Please login to merge, or discard this patch.
classes/db/DBMysqli.class.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -383,7 +383,7 @@
 block discarded – undo
383 383
 	 * @param Object $queryObject
384 384
 	 * @param resource $connection
385 385
 	 * @param boolean $with_values
386
-	 * @return Object
386
+	 * @return Object|null
387 387
 	 */
388 388
 	function _executeSelectAct($queryObject, $connection = null, $with_values = false)
389 389
 	{
Please login to merge, or discard this patch.
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	function __connect($connection)
45 45
 	{
46 46
 		// Attempt to connect
47
-		if($connection["db_port"])
47
+		if ($connection["db_port"])
48 48
 		{
49 49
 			$result = @mysqli_connect($connection["db_hostname"]
50 50
 							, $connection["db_userid"]
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 							, $connection["db_database"]);
61 61
 		}
62 62
 		$error = mysqli_connect_errno();
63
-		if($error)
63
+		if ($error)
64 64
 		{
65 65
 			$this->setError($error, mysqli_connect_error());
66 66
 			return;
@@ -87,11 +87,11 @@  discard block
 block discarded – undo
87 87
 	 */
88 88
 	function addQuotes($string)
89 89
 	{
90
-		if(version_compare(PHP_VERSION, "5.4.0", "<") && get_magic_quotes_gpc())
90
+		if (version_compare(PHP_VERSION, "5.4.0", "<") && get_magic_quotes_gpc())
91 91
 		{
92 92
 			$string = stripslashes(str_replace("\\", "\\\\", $string));
93 93
 		}
94
-		if(!is_numeric($string))
94
+		if (!is_numeric($string))
95 95
 		{
96 96
 			$connection = $this->_getConnection('master');
97 97
 			$string = mysqli_escape_string($connection, $string);
@@ -108,23 +108,23 @@  discard block
 block discarded – undo
108 108
 	 */
109 109
 	function __query($query, $connection)
110 110
 	{
111
-		if($this->use_prepared_statements == 'Y')
111
+		if ($this->use_prepared_statements == 'Y')
112 112
 		{
113 113
 			// 1. Prepare query
114 114
 			$stmt = mysqli_prepare($connection, $query);
115
-			if($stmt)
115
+			if ($stmt)
116 116
 			{
117 117
 				$types = '';
118 118
 				$params = array();
119 119
 				$this->_prepareQueryParameters($types, $params);
120 120
 
121
-				if(!empty($params))
121
+				if (!empty($params))
122 122
 				{
123 123
 					$args[0] = $stmt;
124 124
 					$args[1] = $types;
125 125
 
126 126
 					$i = 2;
127
-					foreach($params as $key => $param)
127
+					foreach ($params as $key => $param)
128 128
 					{
129 129
 						$copy[$key] = $param;
130 130
 						$args[$i++] = &$copy[$key];
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 
133 133
 					// 2. Bind parameters
134 134
 					$status = call_user_func_array('mysqli_stmt_bind_param', $args);
135
-					if(!$status)
135
+					if (!$status)
136 136
 					{
137 137
 						$this->setError(-1, "Invalid arguments: $query" . mysqli_error($connection) . PHP_EOL . print_r($args, true));
138 138
 					}
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 				// 3. Execute query
142 142
 				$status = mysqli_stmt_execute($stmt);
143 143
 
144
-				if(!$status)
144
+				if (!$status)
145 145
 				{
146 146
 					$this->setError(-1, "Prepared statement failed: $query" . mysqli_error($connection) . PHP_EOL . print_r($args, true));
147 147
 				}
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 		$result = mysqli_query($connection, $query);
156 156
 		// Error Check
157 157
 		$error = mysqli_error($connection);
158
-		if($error)
158
+		if ($error)
159 159
 		{
160 160
 			$this->setError(mysqli_errno($connection), $error);
161 161
 		}
@@ -174,23 +174,23 @@  discard block
 block discarded – undo
174 174
 	{
175 175
 		$types = '';
176 176
 		$params = array();
177
-		if(!$this->param)
177
+		if (!$this->param)
178 178
 		{
179 179
 			return;
180 180
 		}
181 181
 
182
-		foreach($this->param as $k => $o)
182
+		foreach ($this->param as $k => $o)
183 183
 		{
184 184
 			$value = $o->getUnescapedValue();
185 185
 			$type = $o->getType();
186 186
 
187 187
 			// Skip column names -> this should be concatenated to query string
188
-			if($o->isColumnName())
188
+			if ($o->isColumnName())
189 189
 			{
190 190
 				continue;
191 191
 			}
192 192
 
193
-			switch($type)
193
+			switch ($type)
194 194
 			{
195 195
 				case 'number' :
196 196
 					$type = 'i';
@@ -202,9 +202,9 @@  discard block
 block discarded – undo
202 202
 					$type = 's';
203 203
 			}
204 204
 
205
-			if(is_array($value))
205
+			if (is_array($value))
206 206
 			{
207
-				foreach($value as $v)
207
+				foreach ($value as $v)
208 208
 				{
209 209
 					$params[] = $v;
210 210
 					$types .= $type;
@@ -226,12 +226,12 @@  discard block
 block discarded – undo
226 226
 	 */
227 227
 	function _fetch($result, $arrayIndexEndValue = NULL)
228 228
 	{
229
-		if($this->use_prepared_statements != 'Y')
229
+		if ($this->use_prepared_statements != 'Y')
230 230
 		{
231 231
 			return parent::_fetch($result, $arrayIndexEndValue);
232 232
 		}
233 233
 		$output = array();
234
-		if(!$this->isConnected() || $this->isError() || !$result)
234
+		if (!$this->isConnected() || $this->isError() || !$result)
235 235
 		{
236 236
 			return $output;
237 237
 		}
@@ -247,9 +247,9 @@  discard block
 block discarded – undo
247 247
 		 * MYSQLI_TYPE for longtext is 252
248 248
 		 */
249 249
 		$longtext_exists = false;
250
-		foreach($fields as $field)
250
+		foreach ($fields as $field)
251 251
 		{
252
-			if(isset($resultArray[$field->name])) // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails
252
+			if (isset($resultArray[$field->name])) // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails
253 253
 			{
254 254
 				$field->name = 'repeat_' . $field->name;
255 255
 			}
@@ -258,14 +258,14 @@  discard block
 block discarded – undo
258 258
 			$row[$field->name] = "";
259 259
 			$resultArray[$field->name] = &$row[$field->name];
260 260
 
261
-			if($field->type == 252)
261
+			if ($field->type == 252)
262 262
 			{
263 263
 				$longtext_exists = true;
264 264
 			}
265 265
 		}
266 266
 		$resultArray = array_merge(array($stmt), $resultArray);
267 267
 
268
-		if($longtext_exists)
268
+		if ($longtext_exists)
269 269
 		{
270 270
 			mysqli_stmt_store_result($stmt);
271 271
 		}
@@ -273,17 +273,17 @@  discard block
 block discarded – undo
273 273
 		call_user_func_array('mysqli_stmt_bind_result', $resultArray);
274 274
 
275 275
 		$rows = array();
276
-		while(mysqli_stmt_fetch($stmt))
276
+		while (mysqli_stmt_fetch($stmt))
277 277
 		{
278 278
 			$resultObject = new stdClass();
279 279
 
280
-			foreach($resultArray as $key => $value)
280
+			foreach ($resultArray as $key => $value)
281 281
 			{
282
-				if($key === 0)
282
+				if ($key === 0)
283 283
 				{
284 284
 					continue; // Skip stmt object
285 285
 				}
286
-				if(strpos($key, 'repeat_'))
286
+				if (strpos($key, 'repeat_'))
287 287
 				{
288 288
 					$key = substr($key, 6);
289 289
 				}
@@ -295,9 +295,9 @@  discard block
 block discarded – undo
295 295
 
296 296
 		mysqli_stmt_close($stmt);
297 297
 
298
-		if($arrayIndexEndValue)
298
+		if ($arrayIndexEndValue)
299 299
 		{
300
-			foreach($rows as $row)
300
+			foreach ($rows as $row)
301 301
 			{
302 302
 				$output[$arrayIndexEndValue--] = $row;
303 303
 			}
@@ -307,9 +307,9 @@  discard block
 block discarded – undo
307 307
 			$output = $rows;
308 308
 		}
309 309
 
310
-		if(count($output) == 1)
310
+		if (count($output) == 1)
311 311
 		{
312
-			if(isset($arrayIndexEndValue))
312
+			if (isset($arrayIndexEndValue))
313 313
 			{
314 314
 				return $output;
315 315
 			}
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
 	 */
331 331
 	function _executeInsertAct($queryObject, $with_values = false)
332 332
 	{
333
-		if($this->use_prepared_statements != 'Y')
333
+		if ($this->use_prepared_statements != 'Y')
334 334
 		{
335 335
 			return parent::_executeInsertAct($queryObject);
336 336
 		}
@@ -348,7 +348,7 @@  discard block
 block discarded – undo
348 348
 	 */
349 349
 	function _executeUpdateAct($queryObject, $with_values = false)
350 350
 	{
351
-		if($this->use_prepared_statements != 'Y')
351
+		if ($this->use_prepared_statements != 'Y')
352 352
 		{
353 353
 			return parent::_executeUpdateAct($queryObject);
354 354
 		}
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
 	 */
367 367
 	function _executeDeleteAct($queryObject, $with_values = false)
368 368
 	{
369
-		if($this->use_prepared_statements != 'Y')
369
+		if ($this->use_prepared_statements != 'Y')
370 370
 		{
371 371
 			return parent::_executeDeleteAct($queryObject);
372 372
 		}
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
 	 */
388 388
 	function _executeSelectAct($queryObject, $connection = null, $with_values = false)
389 389
 	{
390
-		if($this->use_prepared_statements != 'Y')
390
+		if ($this->use_prepared_statements != 'Y')
391 391
 		{
392 392
 			return parent::_executeSelectAct($queryObject, $connection);
393 393
 		}
Please login to merge, or discard this patch.
Braces   +7 added lines, -9 removed lines patch added patch discarded remove patch
@@ -51,8 +51,7 @@  discard block
 block discarded – undo
51 51
 							, $connection["db_password"]
52 52
 							, $connection["db_database"]
53 53
 							, $connection["db_port"]);
54
-		}
55
-		else
54
+		} else
56 55
 		{
57 56
 			$result = @mysqli_connect($connection["db_hostname"]
58 57
 							, $connection["db_userid"]
@@ -209,8 +208,7 @@  discard block
 block discarded – undo
209 208
 					$params[] = $v;
210 209
 					$types .= $type;
211 210
 				}
212
-			}
213
-			else
211
+			} else
214 212
 			{
215 213
 				$params[] = $value;
216 214
 				$types .= $type;
@@ -249,10 +247,12 @@  discard block
 block discarded – undo
249 247
 		$longtext_exists = false;
250 248
 		foreach($fields as $field)
251 249
 		{
252
-			if(isset($resultArray[$field->name])) // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails
250
+			if(isset($resultArray[$field->name])) {
251
+				// When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails
253 252
 			{
254 253
 				$field->name = 'repeat_' . $field->name;
255 254
 			}
255
+			}
256 256
 
257 257
 			// Array passed needs to contain references, not values
258 258
 			$row[$field->name] = "";
@@ -301,8 +301,7 @@  discard block
 block discarded – undo
301 301
 			{
302 302
 				$output[$arrayIndexEndValue--] = $row;
303 303
 			}
304
-		}
305
-		else
304
+		} else
306 305
 		{
307 306
 			$output = $rows;
308 307
 		}
@@ -312,8 +311,7 @@  discard block
 block discarded – undo
312 311
 			if(isset($arrayIndexEndValue))
313 312
 			{
314 313
 				return $output;
315
-			}
316
-			else
314
+			} else
317 315
 			{
318 316
 				return $output[0];
319 317
 			}
Please login to merge, or discard this patch.
classes/db/DBMysqli_innodb.class.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -441,7 +441,7 @@  discard block
 block discarded – undo
441 441
 	 * @param Object $queryObject
442 442
 	 * @param resource $connection
443 443
 	 * @param boolean $with_values
444
-	 * @return Object
444
+	 * @return Object|null
445 445
 	 */
446 446
 	function _executeSelectAct($queryObject, $connection = null, $with_values = false)
447 447
 	{
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
 	 * opt : notnull, default, size\n
495 495
 	 * index : primary key, index, unique\n
496 496
 	 * @param string $xml_doc xml schema contents
497
-	 * @return void|object
497
+	 * @return null|false
498 498
 	 */
499 499
 	function _createTable($xml_doc)
500 500
 	{
Please login to merge, or discard this patch.
Spacing   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	function __connect($connection)
45 45
 	{
46 46
 		// Attempt to connect
47
-		if($connection["db_port"])
47
+		if ($connection["db_port"])
48 48
 		{
49 49
 			$result = @mysqli_connect($connection["db_hostname"]
50 50
 							, $connection["db_userid"]
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 							, $connection["db_database"]);
61 61
 		}
62 62
 		$error = mysqli_connect_errno();
63
-		if($error)
63
+		if ($error)
64 64
 		{
65 65
 			$this->setError($error, mysqli_connect_error());
66 66
 			return;
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	{
90 90
 		$connection = $this->_getConnection('master');
91 91
 
92
-		if(!$transactionLevel)
92
+		if (!$transactionLevel)
93 93
 		{
94 94
 			$this->_query("begin");
95 95
 		}
@@ -111,14 +111,14 @@  discard block
 block discarded – undo
111 111
 
112 112
 		$point = $transactionLevel - 1;
113 113
 
114
-		if($point)
114
+		if ($point)
115 115
 		{
116 116
 			$this->_query("ROLLBACK TO SP" . $point, $connection);
117 117
 		}
118 118
 		else
119 119
 		{
120 120
 			mysqli_rollback($connection);
121
-			$this->setQueryLog( array("query"=>"rollback") );
121
+			$this->setQueryLog(array("query"=>"rollback"));
122 122
 		}
123 123
 		return true;
124 124
 	}
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 	{
133 133
 		$connection = $this->_getConnection('master');
134 134
 		mysqli_commit($connection);
135
-		$this->setQueryLog( array("query"=>"commit") );
135
+		$this->setQueryLog(array("query"=>"commit"));
136 136
 		return true;
137 137
 	}
138 138
 
@@ -145,11 +145,11 @@  discard block
 block discarded – undo
145 145
 	 */
146 146
 	function addQuotes($string)
147 147
 	{
148
-		if(version_compare(PHP_VERSION, "5.4.0", "<") && get_magic_quotes_gpc())
148
+		if (version_compare(PHP_VERSION, "5.4.0", "<") && get_magic_quotes_gpc())
149 149
 		{
150 150
 			$string = stripslashes(str_replace("\\", "\\\\", $string));
151 151
 		}
152
-		if(!is_numeric($string))
152
+		if (!is_numeric($string))
153 153
 		{
154 154
 			$connection = $this->_getConnection('master');
155 155
 			$string = mysqli_escape_string($connection, $string);
@@ -166,23 +166,23 @@  discard block
 block discarded – undo
166 166
 	 */
167 167
 	function __query($query, $connection)
168 168
 	{
169
-		if($this->use_prepared_statements == 'Y')
169
+		if ($this->use_prepared_statements == 'Y')
170 170
 		{
171 171
 			// 1. Prepare query
172 172
 			$stmt = mysqli_prepare($connection, $query);
173
-			if($stmt)
173
+			if ($stmt)
174 174
 			{
175 175
 				$types = '';
176 176
 				$params = array();
177 177
 				$this->_prepareQueryParameters($types, $params);
178 178
 
179
-				if(!empty($params))
179
+				if (!empty($params))
180 180
 				{
181 181
 					$args[0] = $stmt;
182 182
 					$args[1] = $types;
183 183
 
184 184
 					$i = 2;
185
-					foreach($params as $key => $param)
185
+					foreach ($params as $key => $param)
186 186
 					{
187 187
 						$copy[$key] = $param;
188 188
 						$args[$i++] = &$copy[$key];
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
 
191 191
 					// 2. Bind parameters
192 192
 					$status = call_user_func_array('mysqli_stmt_bind_param', $args);
193
-					if(!$status)
193
+					if (!$status)
194 194
 					{
195 195
 						$this->setError(-1, "Invalid arguments: $query" . mysqli_error($connection) . PHP_EOL . print_r($args, true));
196 196
 					}
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
 				// 3. Execute query
200 200
 				$status = mysqli_stmt_execute($stmt);
201 201
 
202
-				if(!$status)
202
+				if (!$status)
203 203
 				{
204 204
 					$this->setError(-1, "Prepared statement failed: $query" . mysqli_error($connection) . PHP_EOL . print_r($args, true));
205 205
 				}
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
 		$result = mysqli_query($connection, $query);
214 214
 		// Error Check
215 215
 		$error = mysqli_error($connection);
216
-		if($error)
216
+		if ($error)
217 217
 		{
218 218
 			$this->setError(mysqli_errno($connection), $error);
219 219
 		}
@@ -232,23 +232,23 @@  discard block
 block discarded – undo
232 232
 	{
233 233
 		$types = '';
234 234
 		$params = array();
235
-		if(!$this->param)
235
+		if (!$this->param)
236 236
 		{
237 237
 			return;
238 238
 		}
239 239
 
240
-		foreach($this->param as $k => $o)
240
+		foreach ($this->param as $k => $o)
241 241
 		{
242 242
 			$value = $o->getUnescapedValue();
243 243
 			$type = $o->getType();
244 244
 
245 245
 			// Skip column names -> this should be concatenated to query string
246
-			if($o->isColumnName())
246
+			if ($o->isColumnName())
247 247
 			{
248 248
 				continue;
249 249
 			}
250 250
 
251
-			switch($type)
251
+			switch ($type)
252 252
 			{
253 253
 				case 'number' :
254 254
 					$type = 'i';
@@ -260,9 +260,9 @@  discard block
 block discarded – undo
260 260
 					$type = 's';
261 261
 			}
262 262
 
263
-			if(is_array($value))
263
+			if (is_array($value))
264 264
 			{
265
-				foreach($value as $v)
265
+				foreach ($value as $v)
266 266
 				{
267 267
 					$params[] = $v;
268 268
 					$types .= $type;
@@ -284,12 +284,12 @@  discard block
 block discarded – undo
284 284
 	 */
285 285
 	function _fetch($result, $arrayIndexEndValue = NULL)
286 286
 	{
287
-		if($this->use_prepared_statements != 'Y')
287
+		if ($this->use_prepared_statements != 'Y')
288 288
 		{
289 289
 			return parent::_fetch($result, $arrayIndexEndValue);
290 290
 		}
291 291
 		$output = array();
292
-		if(!$this->isConnected() || $this->isError() || !$result)
292
+		if (!$this->isConnected() || $this->isError() || !$result)
293 293
 		{
294 294
 			return $output;
295 295
 		}
@@ -305,9 +305,9 @@  discard block
 block discarded – undo
305 305
 		 * MYSQLI_TYPE for longtext is 252
306 306
 		 */
307 307
 		$longtext_exists = false;
308
-		foreach($fields as $field)
308
+		foreach ($fields as $field)
309 309
 		{
310
-			if(isset($resultArray[$field->name])) // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails
310
+			if (isset($resultArray[$field->name])) // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails
311 311
 			{
312 312
 				$field->name = 'repeat_' . $field->name;
313 313
 			}
@@ -316,14 +316,14 @@  discard block
 block discarded – undo
316 316
 			$row[$field->name] = "";
317 317
 			$resultArray[$field->name] = &$row[$field->name];
318 318
 
319
-			if($field->type == 252)
319
+			if ($field->type == 252)
320 320
 			{
321 321
 				$longtext_exists = true;
322 322
 			}
323 323
 		}
324 324
 		$resultArray = array_merge(array($stmt), $resultArray);
325 325
 
326
-		if($longtext_exists)
326
+		if ($longtext_exists)
327 327
 		{
328 328
 			mysqli_stmt_store_result($stmt);
329 329
 		}
@@ -331,17 +331,17 @@  discard block
 block discarded – undo
331 331
 		call_user_func_array('mysqli_stmt_bind_result', $resultArray);
332 332
 
333 333
 		$rows = array();
334
-		while(mysqli_stmt_fetch($stmt))
334
+		while (mysqli_stmt_fetch($stmt))
335 335
 		{
336 336
 			$resultObject = new stdClass();
337 337
 
338
-			foreach($resultArray as $key => $value)
338
+			foreach ($resultArray as $key => $value)
339 339
 			{
340
-				if($key === 0)
340
+				if ($key === 0)
341 341
 				{
342 342
 					continue; // Skip stmt object
343 343
 				}
344
-				if(strpos($key, 'repeat_'))
344
+				if (strpos($key, 'repeat_'))
345 345
 				{
346 346
 					$key = substr($key, 6);
347 347
 				}
@@ -353,9 +353,9 @@  discard block
 block discarded – undo
353 353
 
354 354
 		mysqli_stmt_close($stmt);
355 355
 
356
-		if($arrayIndexEndValue)
356
+		if ($arrayIndexEndValue)
357 357
 		{
358
-			foreach($rows as $row)
358
+			foreach ($rows as $row)
359 359
 			{
360 360
 				$output[$arrayIndexEndValue--] = $row;
361 361
 			}
@@ -365,9 +365,9 @@  discard block
 block discarded – undo
365 365
 			$output = $rows;
366 366
 		}
367 367
 
368
-		if(count($output) == 1)
368
+		if (count($output) == 1)
369 369
 		{
370
-			if(isset($arrayIndexEndValue))
370
+			if (isset($arrayIndexEndValue))
371 371
 			{
372 372
 				return $output;
373 373
 			}
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
 	 */
389 389
 	function _executeInsertAct($queryObject, $with_values = false)
390 390
 	{
391
-		if($this->use_prepared_statements != 'Y')
391
+		if ($this->use_prepared_statements != 'Y')
392 392
 		{
393 393
 			return parent::_executeInsertAct($queryObject);
394 394
 		}
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
 	 */
407 407
 	function _executeUpdateAct($queryObject, $with_values = false)
408 408
 	{
409
-		if($this->use_prepared_statements != 'Y')
409
+		if ($this->use_prepared_statements != 'Y')
410 410
 		{
411 411
 			return parent::_executeUpdateAct($queryObject);
412 412
 		}
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
 	 */
425 425
 	function _executeDeleteAct($queryObject, $with_values = false)
426 426
 	{
427
-		if($this->use_prepared_statements != 'Y')
427
+		if ($this->use_prepared_statements != 'Y')
428 428
 		{
429 429
 			return parent::_executeDeleteAct($queryObject);
430 430
 		}
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
 	 */
446 446
 	function _executeSelectAct($queryObject, $connection = null, $with_values = false)
447 447
 	{
448
-		if($this->use_prepared_statements != 'Y')
448
+		if ($this->use_prepared_statements != 'Y')
449 449
 		{
450 450
 			return parent::_executeSelectAct($queryObject, $connection);
451 451
 		}
@@ -503,13 +503,13 @@  discard block
 block discarded – undo
503 503
 		$xml_obj = $oXml->parse($xml_doc);
504 504
 		// Create a table schema
505 505
 		$table_name = $xml_obj->table->attrs->name;
506
-		if($this->isTableExists($table_name))
506
+		if ($this->isTableExists($table_name))
507 507
 		{
508 508
 			return;
509 509
 		}
510 510
 		$table_name = $this->prefix . $table_name;
511 511
 
512
-		if(!is_array($xml_obj->table->column))
512
+		if (!is_array($xml_obj->table->column))
513 513
 		{
514 514
 			$columns[] = $xml_obj->table->column;
515 515
 		}
@@ -518,7 +518,7 @@  discard block
 block discarded – undo
518 518
 			$columns = $xml_obj->table->column;
519 519
 		}
520 520
 
521
-		foreach($columns as $column)
521
+		foreach ($columns as $column)
522 522
 		{
523 523
 			$name = $column->attrs->name;
524 524
 			$type = $column->attrs->type;
@@ -532,36 +532,36 @@  discard block
 block discarded – undo
532 532
 
533 533
 			$column_schema[] = sprintf('`%s` %s%s %s %s %s', $name, $this->column_type[$type], $size ? '(' . $size . ')' : '', isset($default) ? "default '" . $default . "'" : '', $notnull ? 'not null' : '', $auto_increment ? 'auto_increment' : '');
534 534
 
535
-			if($primary_key)
535
+			if ($primary_key)
536 536
 			{
537 537
 				$primary_list[] = $name;
538 538
 			}
539
-			else if($unique)
539
+			else if ($unique)
540 540
 			{
541 541
 				$unique_list[$unique][] = $name;
542 542
 			}
543
-			else if($index)
543
+			else if ($index)
544 544
 			{
545 545
 				$index_list[$index][] = $name;
546 546
 			}
547 547
 		}
548 548
 
549
-		if(count($primary_list))
549
+		if (count($primary_list))
550 550
 		{
551 551
 			$column_schema[] = sprintf("primary key (%s)", '`' . implode($primary_list, '`,`') . '`');
552 552
 		}
553 553
 
554
-		if(count($unique_list))
554
+		if (count($unique_list))
555 555
 		{
556
-			foreach($unique_list as $key => $val)
556
+			foreach ($unique_list as $key => $val)
557 557
 			{
558 558
 				$column_schema[] = sprintf("unique %s (%s)", $key, '`' . implode($val, '`,`') . '`');
559 559
 			}
560 560
 		}
561 561
 
562
-		if(count($index_list))
562
+		if (count($index_list))
563 563
 		{
564
-			foreach($index_list as $key => $val)
564
+			foreach ($index_list as $key => $val)
565 565
 			{
566 566
 				$column_schema[] = sprintf("index %s (%s)", $key, '`' . implode($val, '`,`') . '`');
567 567
 			}
@@ -570,7 +570,7 @@  discard block
 block discarded – undo
570 570
 		$schema = sprintf('create table `%s` (%s%s) %s;', $this->addQuotes($table_name), "\n", implode($column_schema, ",\n"), "ENGINE = INNODB CHARACTER SET utf8 COLLATE utf8_general_ci");
571 571
 
572 572
 		$output = $this->_query($schema);
573
-		if(!$output)
573
+		if (!$output)
574 574
 		{
575 575
 			return false;
576 576
 		}
Please login to merge, or discard this patch.
Braces   +12 added lines, -19 removed lines patch added patch discarded remove patch
@@ -51,8 +51,7 @@  discard block
 block discarded – undo
51 51
 							, $connection["db_password"]
52 52
 							, $connection["db_database"]
53 53
 							, $connection["db_port"]);
54
-		}
55
-		else
54
+		} else
56 55
 		{
57 56
 			$result = @mysqli_connect($connection["db_hostname"]
58 57
 							, $connection["db_userid"]
@@ -92,8 +91,7 @@  discard block
 block discarded – undo
92 91
 		if(!$transactionLevel)
93 92
 		{
94 93
 			$this->_query("begin");
95
-		}
96
-		else
94
+		} else
97 95
 		{
98 96
 			$this->_query("SAVEPOINT SP" . $transactionLevel, $connection);
99 97
 		}
@@ -114,8 +112,7 @@  discard block
 block discarded – undo
114 112
 		if($point)
115 113
 		{
116 114
 			$this->_query("ROLLBACK TO SP" . $point, $connection);
117
-		}
118
-		else
115
+		} else
119 116
 		{
120 117
 			mysqli_rollback($connection);
121 118
 			$this->setQueryLog( array("query"=>"rollback") );
@@ -267,8 +264,7 @@  discard block
 block discarded – undo
267 264
 					$params[] = $v;
268 265
 					$types .= $type;
269 266
 				}
270
-			}
271
-			else
267
+			} else
272 268
 			{
273 269
 				$params[] = $value;
274 270
 				$types .= $type;
@@ -307,10 +303,12 @@  discard block
 block discarded – undo
307 303
 		$longtext_exists = false;
308 304
 		foreach($fields as $field)
309 305
 		{
310
-			if(isset($resultArray[$field->name])) // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails
306
+			if(isset($resultArray[$field->name])) {
307
+				// When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails
311 308
 			{
312 309
 				$field->name = 'repeat_' . $field->name;
313 310
 			}
311
+			}
314 312
 
315 313
 			// Array passed needs to contain references, not values
316 314
 			$row[$field->name] = "";
@@ -359,8 +357,7 @@  discard block
 block discarded – undo
359 357
 			{
360 358
 				$output[$arrayIndexEndValue--] = $row;
361 359
 			}
362
-		}
363
-		else
360
+		} else
364 361
 		{
365 362
 			$output = $rows;
366 363
 		}
@@ -370,8 +367,7 @@  discard block
 block discarded – undo
370 367
 			if(isset($arrayIndexEndValue))
371 368
 			{
372 369
 				return $output;
373
-			}
374
-			else
370
+			} else
375 371
 			{
376 372
 				return $output[0];
377 373
 			}
@@ -512,8 +508,7 @@  discard block
 block discarded – undo
512 508
 		if(!is_array($xml_obj->table->column))
513 509
 		{
514 510
 			$columns[] = $xml_obj->table->column;
515
-		}
516
-		else
511
+		} else
517 512
 		{
518 513
 			$columns = $xml_obj->table->column;
519 514
 		}
@@ -535,12 +530,10 @@  discard block
 block discarded – undo
535 530
 			if($primary_key)
536 531
 			{
537 532
 				$primary_list[] = $name;
538
-			}
539
-			else if($unique)
533
+			} else if($unique)
540 534
 			{
541 535
 				$unique_list[$unique][] = $name;
542
-			}
543
-			else if($index)
536
+			} else if($index)
544 537
 			{
545 538
 				$index_list[$index][] = $name;
546 539
 			}
Please login to merge, or discard this patch.
classes/db/queryparts/condition/Condition.class.php 3 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -97,6 +97,9 @@
 block discarded – undo
97 97
 		return $this->pipe . ' ' . $this->getConditionPart($this->_value);
98 98
 	}
99 99
 
100
+	/**
101
+	 * @param string $pipe
102
+	 */
100 103
 	function setPipe($pipe)
101 104
 	{
102 105
 		$this->pipe = $pipe;
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -61,13 +61,13 @@  discard block
 block discarded – undo
61 61
 	 */
62 62
 	function toString($withValue = true)
63 63
 	{
64
-		if(!isset($this->_value_to_string))
64
+		if (!isset($this->_value_to_string))
65 65
 		{
66
-			if(!$this->show())
66
+			if (!$this->show())
67 67
 			{
68 68
 				$this->_value_to_string = '';
69 69
 			}
70
-			else if($withValue)
70
+			else if ($withValue)
71 71
 			{
72 72
 				$this->_value_to_string = $this->toStringWithValue();
73 73
 			}
@@ -107,16 +107,16 @@  discard block
 block discarded – undo
107 107
 	 */
108 108
 	function show()
109 109
 	{
110
-		if(!isset($this->_show))
110
+		if (!isset($this->_show))
111 111
 		{
112
-			if(is_array($this->_value) && count($this->_value) === 1 && $this->_value[0] === '')
112
+			if (is_array($this->_value) && count($this->_value) === 1 && $this->_value[0] === '')
113 113
 			{
114 114
 				$this->_show = false;
115 115
 			}
116 116
 			else
117 117
 			{
118 118
 				$this->_show = true;
119
-				switch($this->operation)
119
+				switch ($this->operation)
120 120
 				{
121 121
 					case 'equal' :
122 122
 					case 'more' :
@@ -138,30 +138,30 @@  discard block
 block discarded – undo
138 138
 					case 'not':
139 139
 					case 'notequal' :
140 140
 						// if variable is not set or is not string or number, return
141
-						if(!isset($this->_value))
141
+						if (!isset($this->_value))
142 142
 						{
143 143
 							$this->_show = false;
144 144
 							break;
145 145
 						}
146
-						if($this->_value === '')
146
+						if ($this->_value === '')
147 147
 						{
148 148
 							$this->_show = false;
149 149
 							break;
150 150
 						}
151 151
 						$tmpArray = array('string' => 1, 'integer' => 1);
152
-						if(!isset($tmpArray[gettype($this->_value)]))
152
+						if (!isset($tmpArray[gettype($this->_value)]))
153 153
 						{
154 154
 							$this->_show = false;
155 155
 							break;
156 156
 						}
157 157
 						break;
158 158
 					case 'between' :
159
-						if(!is_array($this->_value))
159
+						if (!is_array($this->_value))
160 160
 						{
161 161
 							$this->_show = false;
162 162
 							break;
163 163
 						}
164
-						if(count($this->_value) != 2)
164
+						if (count($this->_value) != 2)
165 165
 						{
166 166
 							$this->_show = false;
167 167
 							break;
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
 		$name = $this->column_name;
189 189
 		$operation = $this->operation;
190 190
 
191
-		switch($operation)
191
+		switch ($operation)
192 192
 		{
193 193
 			case 'equal' :
194 194
 				return $name . ' = ' . $value;
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 			case 'like_tail' :
209 209
 			case 'like_prefix' :
210 210
 			case 'like' :
211
-				if(defined('__CUBRID_VERSION__')
211
+				if (defined('__CUBRID_VERSION__')
212 212
 						&& __CUBRID_VERSION__ >= '8.4.1')
213 213
 					return $name . ' rlike ' . $value;
214 214
 				else
Please login to merge, or discard this patch.
Braces   +8 added lines, -10 removed lines patch added patch discarded remove patch
@@ -66,12 +66,10 @@  discard block
 block discarded – undo
66 66
 			if(!$this->show())
67 67
 			{
68 68
 				$this->_value_to_string = '';
69
-			}
70
-			else if($withValue)
69
+			} else if($withValue)
71 70
 			{
72 71
 				$this->_value_to_string = $this->toStringWithValue();
73
-			}
74
-			else
72
+			} else
75 73
 			{
76 74
 				$this->_value_to_string = $this->toStringWithoutValue();
77 75
 			}
@@ -112,8 +110,7 @@  discard block
 block discarded – undo
112 110
 			if(is_array($this->_value) && count($this->_value) === 1 && $this->_value[0] === '')
113 111
 			{
114 112
 				$this->_show = false;
115
-			}
116
-			else
113
+			} else
117 114
 			{
118 115
 				$this->_show = true;
119 116
 				switch($this->operation)
@@ -209,10 +206,11 @@  discard block
 block discarded – undo
209 206
 			case 'like_prefix' :
210 207
 			case 'like' :
211 208
 				if(defined('__CUBRID_VERSION__')
212
-						&& __CUBRID_VERSION__ >= '8.4.1')
213
-					return $name . ' rlike ' . $value;
214
-				else
215
-					return $name . ' like ' . $value;
209
+						&& __CUBRID_VERSION__ >= '8.4.1') {
210
+									return $name . ' rlike ' . $value;
211
+				} else {
212
+									return $name . ' like ' . $value;
213
+				}
216 214
 				break;
217 215
 			case 'notlike_tail' :
218 216
 			case 'notlike_prefix' :
Please login to merge, or discard this patch.
classes/db/queryparts/condition/ConditionWithoutArgument.class.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
12 12
 	/**
13 13
 	 * constructor
14 14
 	 * @param string $column_name
15
-	 * @param mixed $argument
15
+	 * @param integer $argument
16 16
 	 * @param string $operation
17 17
 	 * @param string $pipe
18
-	 * @return void
18
+	 * @return boolean
19 19
 	 */
20 20
 	function ConditionWithoutArgument($column_name, $argument, $operation, $pipe = "")
21 21
 	{
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@
 block discarded – undo
21 21
 	{
22 22
 		parent::Condition($column_name, $argument, $operation, $pipe);
23 23
 		$tmpArray = array('in' => 1, 'notin' => 1, 'not_in' => 1);
24
-		if(isset($tmpArray[$operation]))
24
+		if (isset($tmpArray[$operation]))
25 25
 		{
26
-			if(is_array($argument))
26
+			if (is_array($argument))
27 27
 			{
28 28
 				$argument = implode($argument, ',');
29 29
 			}
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,7 @@
 block discarded – undo
28 28
 				$argument = implode($argument, ',');
29 29
 			}
30 30
 			$this->_value = '(' . $argument . ')';
31
-		}
32
-		else
31
+		} else
33 32
 		{
34 33
 			$this->_value = $argument;
35 34
 		}
Please login to merge, or discard this patch.
classes/db/queryparts/expression/UpdateExpression.class.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 	/**
21 21
 	 * constructor
22 22
 	 * @param string $column_name
23
-	 * @param object $argument
23
+	 * @param Argument $argument
24 24
 	 * @return void
25 25
 	 */
26 26
 	function UpdateExpression($column_name, $argument)
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 	 */
36 36
 	function getExpression($with_value = true)
37 37
 	{
38
-		if($with_value)
38
+		if ($with_value)
39 39
 		{
40 40
 			return $this->getExpressionWithValue();
41 41
 		}
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 	{
51 51
 		$value = $this->argument->getValue();
52 52
 		$operation = $this->argument->getColumnOperation();
53
-		if(isset($operation))
53
+		if (isset($operation))
54 54
 		{
55 55
 			return "$this->column_name = $this->column_name $operation $value";
56 56
 		}
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 	function getExpressionWithoutValue()
66 66
 	{
67 67
 		$operation = $this->argument->getColumnOperation();
68
-		if(isset($operation))
68
+		if (isset($operation))
69 69
 		{
70 70
 			return "$this->column_name = $this->column_name $operation ?";
71 71
 		}
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 	{
77 77
 		// TODO Escape value according to column type instead of variable type
78 78
 		$value = $this->argument->getValue();
79
-		if(!is_numeric($value))
79
+		if (!is_numeric($value))
80 80
 		{
81 81
 			return "'" . $value . "'";
82 82
 		}
@@ -85,12 +85,12 @@  discard block
 block discarded – undo
85 85
 
86 86
 	function show()
87 87
 	{
88
-		if(!$this->argument)
88
+		if (!$this->argument)
89 89
 		{
90 90
 			return false;
91 91
 		}
92 92
 		$value = $this->argument->getValue();
93
-		if(!isset($value))
93
+		if (!isset($value))
94 94
 		{
95 95
 			return false;
96 96
 		}
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 
105 105
 	function getArguments()
106 106
 	{
107
-		if($this->argument)
107
+		if ($this->argument)
108 108
 		{
109 109
 			return array($this->argument);
110 110
 		}
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -107,8 +107,7 @@
 block discarded – undo
107 107
 		if($this->argument)
108 108
 		{
109 109
 			return array($this->argument);
110
-		}
111
-		else
110
+		} else
112 111
 		{
113 112
 			return array();
114 113
 		}
Please login to merge, or discard this patch.
classes/db/queryparts/Query.class.php 3 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -251,6 +251,9 @@
 block discarded – undo
251 251
 		return $this->orderby;
252 252
 	}
253 253
 
254
+	/**
255
+	 * @param integer $limit
256
+	 */
254 257
 	function setLimit($limit = NULL)
255 258
 	{
256 259
 		if(!isset($limit))
Please login to merge, or discard this patch.
Spacing   +60 added lines, -60 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 		$this->action = $action;
109 109
 		$this->priority = $priority;
110 110
 
111
-		if(!isset($tables))
111
+		if (!isset($tables))
112 112
 		{
113 113
 			return;
114 114
 		}
@@ -144,12 +144,12 @@  discard block
 block discarded – undo
144 144
 	function setColumnList($columnList)
145 145
 	{
146 146
 		$this->columnList = $columnList;
147
-		if(count($this->columnList) > 0)
147
+		if (count($this->columnList) > 0)
148 148
 		{
149 149
 			$selectColumns = array();
150 150
 			$dbParser = DB::getParser();
151 151
 
152
-			foreach($this->columnList as $columnName)
152
+			foreach ($this->columnList as $columnName)
153 153
 			{
154 154
 				$columnName = $dbParser->escapeColumn($columnName);
155 155
 				$selectColumns[] = new SelectExpression($columnName);
@@ -161,13 +161,13 @@  discard block
 block discarded – undo
161 161
 
162 162
 	function setColumns($columns)
163 163
 	{
164
-		if(!isset($columns) || count($columns) === 0)
164
+		if (!isset($columns) || count($columns) === 0)
165 165
 		{
166 166
 			$this->columns = array(new StarExpression());
167 167
 			return;
168 168
 		}
169 169
 
170
-		if(!is_array($columns))
170
+		if (!is_array($columns))
171 171
 		{
172 172
 			$columns = array($columns);
173 173
 		}
@@ -177,14 +177,14 @@  discard block
 block discarded – undo
177 177
 
178 178
 	function setTables($tables)
179 179
 	{
180
-		if(!isset($tables) || count($tables) === 0)
180
+		if (!isset($tables) || count($tables) === 0)
181 181
 		{
182 182
 			$this->setError(TRUE);
183 183
 			$this->setMessage("You must provide at least one table for the query.");
184 184
 			return;
185 185
 		}
186 186
 
187
-		if(!is_array($tables))
187
+		if (!is_array($tables))
188 188
 		{
189 189
 			$tables = array($tables);
190 190
 		}
@@ -200,18 +200,18 @@  discard block
 block discarded – undo
200 200
 	function setConditions($conditions)
201 201
 	{
202 202
 		$this->conditions = array();
203
-		if(!isset($conditions) || count($conditions) === 0)
203
+		if (!isset($conditions) || count($conditions) === 0)
204 204
 		{
205 205
 			return;
206 206
 		}
207
-		if(!is_array($conditions))
207
+		if (!is_array($conditions))
208 208
 		{
209 209
 			$conditions = array($conditions);
210 210
 		}
211 211
 
212
-		foreach($conditions as $conditionGroup)
212
+		foreach ($conditions as $conditionGroup)
213 213
 		{
214
-			if($conditionGroup->show())
214
+			if ($conditionGroup->show())
215 215
 			{
216 216
 				$this->conditions[] = $conditionGroup;
217 217
 			}
@@ -220,11 +220,11 @@  discard block
 block discarded – undo
220 220
 
221 221
 	function setGroups($groups)
222 222
 	{
223
-		if(!isset($groups) || count($groups) === 0)
223
+		if (!isset($groups) || count($groups) === 0)
224 224
 		{
225 225
 			return;
226 226
 		}
227
-		if(!is_array($groups))
227
+		if (!is_array($groups))
228 228
 		{
229 229
 			$groups = array($groups);
230 230
 		}
@@ -234,11 +234,11 @@  discard block
 block discarded – undo
234 234
 
235 235
 	function setOrder($order)
236 236
 	{
237
-		if(!isset($order) || count($order) === 0)
237
+		if (!isset($order) || count($order) === 0)
238 238
 		{
239 239
 			return;
240 240
 		}
241
-		if(!is_array($order))
241
+		if (!is_array($order))
242 242
 		{
243 243
 			$order = array($order);
244 244
 		}
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
 
254 254
 	function setLimit($limit = NULL)
255 255
 	{
256
-		if(!isset($limit))
256
+		if (!isset($limit))
257 257
 		{
258 258
 			return;
259 259
 		}
@@ -354,9 +354,9 @@  discard block
 block discarded – undo
354 354
 	function getClickCountColumns()
355 355
 	{
356 356
 		$click_count_columns = array();
357
-		foreach($this->columns as $column)
357
+		foreach ($this->columns as $column)
358 358
 		{
359
-			if($column->show() && is_a($column, 'ClickCountExpression'))
359
+			if ($column->show() && is_a($column, 'ClickCountExpression'))
360 360
 			{
361 361
 				$click_count_columns[] = $column;
362 362
 			}
@@ -371,11 +371,11 @@  discard block
 block discarded – undo
371 371
 	 */
372 372
 	function getSelectString($with_values = TRUE)
373 373
 	{
374
-		foreach($this->columns as $column)
374
+		foreach ($this->columns as $column)
375 375
 		{
376
-			if($column->show())
376
+			if ($column->show())
377 377
 			{
378
-				if($column->isSubquery())
378
+				if ($column->isSubquery())
379 379
 				{
380 380
 					$select[] = $column->toString($with_values) . ' as ' . $column->getAlias();
381 381
 				}
@@ -395,15 +395,15 @@  discard block
 block discarded – undo
395 395
 	 */
396 396
 	function getUpdateString($with_values = TRUE)
397 397
 	{
398
-		foreach($this->columns as $column)
398
+		foreach ($this->columns as $column)
399 399
 		{
400
-			if($column->show())
400
+			if ($column->show())
401 401
 			{
402 402
 				$update[] = $column->getExpression($with_values);
403 403
 			}
404 404
 		}
405 405
 
406
-		if(!$update) return;
406
+		if (!$update) return;
407 407
 		return trim(implode($update, ', '));
408 408
 	}
409 409
 
@@ -416,9 +416,9 @@  discard block
 block discarded – undo
416 416
 	{
417 417
 		$columnsList = '';
418 418
 		// means we have insert-select
419
-		if($this->subquery)
419
+		if ($this->subquery)
420 420
 		{
421
-			foreach($this->columns as $column)
421
+			foreach ($this->columns as $column)
422 422
 			{
423 423
 				$columnsList .= $column->getColumnName() . ', ';
424 424
 			}
@@ -429,9 +429,9 @@  discard block
 block discarded – undo
429 429
 		}
430 430
 
431 431
 		$valuesList = '';
432
-		foreach($this->columns as $column)
432
+		foreach ($this->columns as $column)
433 433
 		{
434
-			if($column->show())
434
+			if ($column->show())
435 435
 			{
436 436
 				$columnsList .= $column->getColumnName() . ', ';
437 437
 				$valuesList .= $column->getValue($with_values) . ', ';
@@ -460,9 +460,9 @@  discard block
 block discarded – undo
460 460
 	{
461 461
 		$from = '';
462 462
 		$simple_table_count = 0;
463
-		foreach($this->tables as $table)
463
+		foreach ($this->tables as $table)
464 464
 		{
465
-			if($table->isJoinTable() || !$simple_table_count)
465
+			if ($table->isJoinTable() || !$simple_table_count)
466 466
 			{
467 467
 				$from .= $table->toString($with_values) . ' ';
468 468
 			}
@@ -471,14 +471,14 @@  discard block
 block discarded – undo
471 471
 				$from .= ', ' . $table->toString($with_values) . ' ';
472 472
 			}
473 473
 
474
-			if(is_a($table, 'Subquery'))
474
+			if (is_a($table, 'Subquery'))
475 475
 			{
476 476
 				$from .= $table->getAlias() ? ' as ' . $table->getAlias() . ' ' : ' ';
477 477
 			}
478 478
 
479 479
 			$simple_table_count++;
480 480
 		}
481
-		if(trim($from) == '')
481
+		if (trim($from) == '')
482 482
 		{
483 483
 			return '';
484 484
 		}
@@ -496,9 +496,9 @@  discard block
 block discarded – undo
496 496
 		$where = '';
497 497
 		$condition_count = 0;
498 498
 
499
-		foreach($this->conditions as $conditionGroup)
499
+		foreach ($this->conditions as $conditionGroup)
500 500
 		{
501
-			if($condition_count === 0)
501
+			if ($condition_count === 0)
502 502
 			{
503 503
 				$conditionGroup->setPipe("");
504 504
 			}
@@ -507,22 +507,22 @@  discard block
 block discarded – undo
507 507
 			$condition_count++;
508 508
 		}
509 509
 
510
-		if($with_optimization &&
510
+		if ($with_optimization &&
511 511
 				(strstr($this->getOrderByString(), 'list_order') || strstr($this->getOrderByString(), 'update_order')))
512 512
 		{
513 513
 
514
-			if($condition_count !== 0)
514
+			if ($condition_count !== 0)
515 515
 			{
516 516
 				$where = '(' . $where . ') ';
517 517
 			}
518 518
 
519
-			foreach($this->orderby as $order)
519
+			foreach ($this->orderby as $order)
520 520
 			{
521 521
 				$colName = $order->getColumnName();
522
-				if(strstr($colName, 'list_order') || strstr($colName, 'update_order'))
522
+				if (strstr($colName, 'list_order') || strstr($colName, 'update_order'))
523 523
 				{
524 524
 					$opt_condition = new ConditionWithoutArgument($colName, 2100000000, 'less', 'and');
525
-					if($condition_count === 0)
525
+					if ($condition_count === 0)
526 526
 					{
527 527
 						$opt_condition->setPipe("");
528 528
 					}
@@ -542,9 +542,9 @@  discard block
 block discarded – undo
542 542
 	function getGroupByString()
543 543
 	{
544 544
 		$groupBy = '';
545
-		if($this->groups)
545
+		if ($this->groups)
546 546
 		{
547
-			if($this->groups[0] !== "")
547
+			if ($this->groups[0] !== "")
548 548
 			{
549 549
 				$groupBy = implode(', ', $this->groups);
550 550
 			}
@@ -558,14 +558,14 @@  discard block
 block discarded – undo
558 558
 	 */
559 559
 	function getOrderByString()
560 560
 	{
561
-		if(!$this->_orderByString)
561
+		if (!$this->_orderByString)
562 562
 		{
563
-			if(count($this->orderby) === 0)
563
+			if (count($this->orderby) === 0)
564 564
 			{
565 565
 				return '';
566 566
 			}
567 567
 			$orderBy = '';
568
-			foreach($this->orderby as $order)
568
+			foreach ($this->orderby as $order)
569 569
 			{
570 570
 				$orderBy .= $order->toString() . ', ';
571 571
 			}
@@ -587,7 +587,7 @@  discard block
 block discarded – undo
587 587
 	function getLimitString()
588 588
 	{
589 589
 		$limit = '';
590
-		if(count($this->limit) > 0)
590
+		if (count($this->limit) > 0)
591 591
 		{
592 592
 			$limit = '';
593 593
 			$limit .= $this->limit->toString();
@@ -606,19 +606,19 @@  discard block
 block discarded – undo
606 606
 	 */
607 607
 	function getArguments()
608 608
 	{
609
-		if(!isset($this->arguments))
609
+		if (!isset($this->arguments))
610 610
 		{
611 611
 			$this->arguments = array();
612 612
 
613 613
 			// Join table arguments
614
-			if(count($this->tables) > 0)
614
+			if (count($this->tables) > 0)
615 615
 			{
616
-				foreach($this->tables as $table)
616
+				foreach ($this->tables as $table)
617 617
 				{
618
-					if($table->isJoinTable() || is_a($table, 'Subquery'))
618
+					if ($table->isJoinTable() || is_a($table, 'Subquery'))
619 619
 					{
620 620
 						$args = $table->getArguments();
621
-						if($args)
621
+						if ($args)
622 622
 						{
623 623
 							$this->arguments = array_merge($this->arguments, $args);
624 624
 						}
@@ -628,14 +628,14 @@  discard block
 block discarded – undo
628 628
 
629 629
 			// Column arguments
630 630
 			// The if is for delete statements, all others must have columns
631
-			if(count($this->columns) > 0)
631
+			if (count($this->columns) > 0)
632 632
 			{
633
-				foreach($this->columns as $column)
633
+				foreach ($this->columns as $column)
634 634
 				{
635
-					if($column->show())
635
+					if ($column->show())
636 636
 					{
637 637
 						$args = $column->getArguments();
638
-						if($args)
638
+						if ($args)
639 639
 						{
640 640
 							$this->arguments = array_merge($this->arguments, $args);
641 641
 						}
@@ -644,12 +644,12 @@  discard block
 block discarded – undo
644 644
 			}
645 645
 
646 646
 			// Condition arguments
647
-			if(count($this->conditions) > 0)
647
+			if (count($this->conditions) > 0)
648 648
 			{
649
-				foreach($this->conditions as $conditionGroup)
649
+				foreach ($this->conditions as $conditionGroup)
650 650
 				{
651 651
 					$args = $conditionGroup->getArguments();
652
-					if(count($args) > 0)
652
+					if (count($args) > 0)
653 653
 					{
654 654
 						$this->arguments = array_merge($this->arguments, $args);
655 655
 					}
@@ -657,12 +657,12 @@  discard block
 block discarded – undo
657 657
 			}
658 658
 
659 659
 			// Navigation arguments
660
-			if(count($this->orderby) > 0)
660
+			if (count($this->orderby) > 0)
661 661
 			{
662
-				foreach($this->orderby as $order)
662
+				foreach ($this->orderby as $order)
663 663
 				{
664 664
 					$args = $order->getArguments();
665
-					if(count($args) > 0)
665
+					if (count($args) > 0)
666 666
 					{
667 667
 						$this->arguments = array_merge($this->arguments, $args);
668 668
 					}
Please login to merge, or discard this patch.
Braces   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -378,8 +378,7 @@  discard block
 block discarded – undo
378 378
 				if($column->isSubquery())
379 379
 				{
380 380
 					$select[] = $column->toString($with_values) . ' as ' . $column->getAlias();
381
-				}
382
-				else
381
+				} else
383 382
 				{
384 383
 					$select[] = $column->getExpression($with_values);
385 384
 				}
@@ -403,7 +402,9 @@  discard block
 block discarded – undo
403 402
 			}
404 403
 		}
405 404
 
406
-		if(!$update) return;
405
+		if(!$update) {
406
+			return;
407
+		}
407 408
 		return trim(implode($update, ', '));
408 409
 	}
409 410
 
@@ -465,8 +466,7 @@  discard block
 block discarded – undo
465 466
 			if($table->isJoinTable() || !$simple_table_count)
466 467
 			{
467 468
 				$from .= $table->toString($with_values) . ' ';
468
-			}
469
-			else
469
+			} else
470 470
 			{
471 471
 				$from .= ', ' . $table->toString($with_values) . ' ';
472 472
 			}
Please login to merge, or discard this patch.
classes/display/DisplayHandler.class.php 3 patches
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 	 * Print debugging message to designated output source depending on the value set to __DEBUG_OUTPUT_. \n
134 134
 	 * This method only functions when __DEBUG__ variable is set to 1.
135 135
 	 * __DEBUG_OUTPUT__ == 0, messages are written in ./files/_debug_message.php
136
-	 * @return void
136
+	 * @return null|string
137 137
 	 */
138 138
 	function _debugOutput()
139 139
 	{
@@ -358,6 +358,7 @@  discard block
 block discarded – undo
358 358
 
359 359
 	/**
360 360
 	 * print a HTTP HEADER for HTML, which is encoded in UTF-8
361
+	 * @param integer $code
361 362
 	 * @return void
362 363
 	 */
363 364
 	function _printHttpStatusCode($code)
Please login to merge, or discard this patch.
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 	function printContent(&$oModule)
26 26
 	{
27 27
 		// Check if the gzip encoding supported
28
-		if(
28
+		if (
29 29
 				(defined('__OB_GZHANDLER_ENABLE__') && __OB_GZHANDLER_ENABLE__ == 1) &&
30 30
 				strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') !== FALSE &&
31 31
 				function_exists('ob_gzhandler') &&
@@ -37,23 +37,23 @@  discard block
 block discarded – undo
37 37
 		}
38 38
 
39 39
 		// Extract contents to display by the request method
40
-		if(Context::get('xeVirtualRequestMethod') == 'xml')
40
+		if (Context::get('xeVirtualRequestMethod') == 'xml')
41 41
 		{
42 42
 			$handler = new VirtualXMLDisplayHandler();
43 43
 		}
44
-		else if(Context::getRequestMethod() == 'XMLRPC')
44
+		else if (Context::getRequestMethod() == 'XMLRPC')
45 45
 		{
46 46
 			$handler = new XMLDisplayHandler();
47
-			if(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== FALSE)
47
+			if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== FALSE)
48 48
 			{
49 49
 				$this->gz_enabled = FALSE;
50 50
 			}
51 51
 		}
52
-		else if(Context::getRequestMethod() == 'JSON')
52
+		else if (Context::getRequestMethod() == 'JSON')
53 53
 		{
54 54
 			$handler = new JSONDisplayHandler();
55 55
 		}
56
-		else if(Context::getRequestMethod() == 'JS_CALLBACK')
56
+		else if (Context::getRequestMethod() == 'JS_CALLBACK')
57 57
 		{
58 58
 			$handler = new JSCallbackDisplayHandler();
59 59
 		}
@@ -71,9 +71,9 @@  discard block
 block discarded – undo
71 71
 		$called_position = 'before_display_content';
72 72
 		$oAddonController = getController('addon');
73 73
 		$addon_file = $oAddonController->getCacheFilePath(Mobile::isFromMobilePhone() ? "mobile" : "pc");
74
-		if(file_exists($addon_file)) include($addon_file);
74
+		if (file_exists($addon_file)) include($addon_file);
75 75
 
76
-		if(method_exists($handler, "prepareToPrint"))
76
+		if (method_exists($handler, "prepareToPrint"))
77 77
 		{
78 78
 			$handler->prepareToPrint($output);
79 79
 		}
@@ -81,17 +81,17 @@  discard block
 block discarded – undo
81 81
 		// header output
82 82
 
83 83
 		$httpStatusCode = $oModule->getHttpStatusCode();
84
-		if($httpStatusCode && $httpStatusCode != 200)
84
+		if ($httpStatusCode && $httpStatusCode != 200)
85 85
 		{
86 86
 			$this->_printHttpStatusCode($httpStatusCode);
87 87
 		}
88 88
 		else
89 89
 		{
90
-			if(Context::getResponseMethod() == 'JSON' || Context::getResponseMethod() == 'JS_CALLBACK')
90
+			if (Context::getResponseMethod() == 'JSON' || Context::getResponseMethod() == 'JS_CALLBACK')
91 91
 			{
92 92
 				$this->_printJSONHeader();
93 93
 			}
94
-			else if(Context::getResponseMethod() != 'HTML')
94
+			else if (Context::getResponseMethod() != 'HTML')
95 95
 			{
96 96
 				$this->_printXMLHeader();
97 97
 			}
@@ -107,13 +107,13 @@  discard block
 block discarded – undo
107 107
 
108 108
 		// disable gzip if output already exists
109 109
 		ob_flush();
110
-		if(headers_sent())
110
+		if (headers_sent())
111 111
 		{
112 112
 			$this->gz_enabled = FALSE;
113 113
 		}
114 114
 
115 115
 		// results directly output
116
-		if($this->gz_enabled)
116
+		if ($this->gz_enabled)
117 117
 		{
118 118
 			header("Content-Encoding: gzip");
119 119
 			print ob_gzhandler($output, 5);
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 	 */
138 138
 	function _debugOutput()
139 139
 	{
140
-		if(!__DEBUG__)
140
+		if (!__DEBUG__)
141 141
 		{
142 142
 			return;
143 143
 		}
@@ -145,21 +145,21 @@  discard block
 block discarded – undo
145 145
 		$end = getMicroTime();
146 146
 
147 147
 		// Firebug console output
148
-		if(__DEBUG_OUTPUT__ == 2 && version_compare(PHP_VERSION, '6.0.0') === -1)
148
+		if (__DEBUG_OUTPUT__ == 2 && version_compare(PHP_VERSION, '6.0.0') === -1)
149 149
 		{
150 150
 			static $firephp;
151
-			if(!isset($firephp))
151
+			if (!isset($firephp))
152 152
 			{
153 153
 				$firephp = FirePHP::getInstance(true);
154 154
 			}
155 155
 
156
-			if(__DEBUG_PROTECT__ == 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR'])
156
+			if (__DEBUG_PROTECT__ == 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR'])
157 157
 			{
158 158
 				$firephp->fb('Change the value of __DEBUG_PROTECT_IP__ into your IP address in config/config.user.inc.php or config/config.inc.php', 'The IP address is not allowed.');
159 159
 				return;
160 160
 			}
161 161
 			// display total execution time and Request/Response info
162
-			if(__DEBUG__ & 2)
162
+			if (__DEBUG__ & 2)
163 163
 			{
164 164
 				$firephp->fb(
165 165
 						array(
@@ -197,10 +197,10 @@  discard block
 block discarded – undo
197 197
 			}
198 198
 
199 199
 			// display DB query history
200
-			if((__DEBUG__ & 4) && $GLOBALS['__db_queries__'])
200
+			if ((__DEBUG__ & 4) && $GLOBALS['__db_queries__'])
201 201
 			{
202
-				$queries_output = array(array('Result/'.PHP_EOL.'Elapsed time', 'Query ID', 'Query'));
203
-				foreach($GLOBALS['__db_queries__'] as $query)
202
+				$queries_output = array(array('Result/' . PHP_EOL . 'Elapsed time', 'Query ID', 'Query'));
203
+				foreach ($GLOBALS['__db_queries__'] as $query)
204 204
 				{
205 205
 					$queries_output[] = array($query['result'] . PHP_EOL . sprintf('%0.5f', $query['elapsed_time']), str_replace(_XE_PATH_, '', $query['called_file']) . PHP_EOL . $query['called_method'] . '()' . PHP_EOL . $query['query_id'], $query['query']);
206 206
 				}
@@ -219,9 +219,9 @@  discard block
 block discarded – undo
219 219
 
220 220
 			$buff = array();
221 221
 			// display total execution time and Request/Response info
222
-			if(__DEBUG__ & 2)
222
+			if (__DEBUG__ & 2)
223 223
 			{
224
-				if(__DEBUG_PROTECT__ == 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR'])
224
+				if (__DEBUG_PROTECT__ == 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR'])
225 225
 				{
226 226
 					return;
227 227
 				}
@@ -252,21 +252,21 @@  discard block
 block discarded – undo
252 252
 				$buff[] = sprintf("\tTrans Content \t\t\t\t\t: %0.5f sec", $GLOBALS['__trans_content_elapsed__']);
253 253
 			}
254 254
 			// DB Logging
255
-			if(__DEBUG__ & 4)
255
+			if (__DEBUG__ & 4)
256 256
 			{
257
-				if(__DEBUG_PROTECT__ == 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR'])
257
+				if (__DEBUG_PROTECT__ == 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR'])
258 258
 				{
259 259
 					return;
260 260
 				}
261 261
 
262
-				if($GLOBALS['__db_queries__'])
262
+				if ($GLOBALS['__db_queries__'])
263 263
 				{
264 264
 					$buff[] = sprintf("\n- DB Queries : %d Queries. %0.5f sec", count($GLOBALS['__db_queries__']), $GLOBALS['__db_elapsed_time__']);
265 265
 					$num = 0;
266 266
 
267
-					foreach($GLOBALS['__db_queries__'] as $query)
267
+					foreach ($GLOBALS['__db_queries__'] as $query)
268 268
 					{
269
-						if($query['result'] == 'Success')
269
+						if ($query['result'] == 'Success')
270 270
 						{
271 271
 							$query_result = "Query Success";
272 272
 						}
@@ -283,12 +283,12 @@  discard block
 block discarded – undo
283 283
 			}
284 284
 
285 285
 			// Output in HTML comments
286
-			if($buff && __DEBUG_OUTPUT__ == 1 && Context::getResponseMethod() == 'HTML')
286
+			if ($buff && __DEBUG_OUTPUT__ == 1 && Context::getResponseMethod() == 'HTML')
287 287
 			{
288 288
 				$buff = implode("\r\n", $buff);
289 289
 				$buff = sprintf("[%s %s:%d]\r\n%s", date('Y-m-d H:i:s'), $file_name, $line_num, print_r($buff, true));
290 290
 
291
-				if(__DEBUG_PROTECT__ == 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR'])
291
+				if (__DEBUG_PROTECT__ == 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR'])
292 292
 				{
293 293
 					$buff = 'The IP address is not allowed. Change the value of __DEBUG_PROTECT_IP__ into your IP address in config/config.user.inc.php or config/config.inc.php';
294 294
 				}
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
 			}
298 298
 
299 299
 			// Output to a file
300
-			if($buff && __DEBUG_OUTPUT__ == 0)
300
+			if ($buff && __DEBUG_OUTPUT__ == 0)
301 301
 			{
302 302
 				$debug_file = _XE_PATH_ . 'files/_debug_message.php';
303 303
 				$buff = implode(PHP_EOL, $buff);
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
 				$buff = str_repeat('=', 80) . "\n" . $buff . "\n" . str_repeat('-', 80);
307 307
 				$buff = "\n<?php\n/*" . $buff . "*/\n?>\n";
308 308
 
309
-				if (!@file_put_contents($debug_file, $buff, FILE_APPEND|LOCK_EX))
309
+				if (!@file_put_contents($debug_file, $buff, FILE_APPEND | LOCK_EX))
310 310
 				{
311 311
 					return;
312 312
 				}
Please login to merge, or discard this patch.
Braces   +13 added lines, -21 removed lines patch added patch discarded remove patch
@@ -40,24 +40,20 @@  discard block
 block discarded – undo
40 40
 		if(Context::get('xeVirtualRequestMethod') == 'xml')
41 41
 		{
42 42
 			$handler = new VirtualXMLDisplayHandler();
43
-		}
44
-		else if(Context::getRequestMethod() == 'XMLRPC')
43
+		} else if(Context::getRequestMethod() == 'XMLRPC')
45 44
 		{
46 45
 			$handler = new XMLDisplayHandler();
47 46
 			if(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== FALSE)
48 47
 			{
49 48
 				$this->gz_enabled = FALSE;
50 49
 			}
51
-		}
52
-		else if(Context::getRequestMethod() == 'JSON')
50
+		} else if(Context::getRequestMethod() == 'JSON')
53 51
 		{
54 52
 			$handler = new JSONDisplayHandler();
55
-		}
56
-		else if(Context::getRequestMethod() == 'JS_CALLBACK')
53
+		} else if(Context::getRequestMethod() == 'JS_CALLBACK')
57 54
 		{
58 55
 			$handler = new JSCallbackDisplayHandler();
59
-		}
60
-		else
56
+		} else
61 57
 		{
62 58
 			$handler = new HTMLDisplayHandler();
63 59
 		}
@@ -71,7 +67,9 @@  discard block
 block discarded – undo
71 67
 		$called_position = 'before_display_content';
72 68
 		$oAddonController = getController('addon');
73 69
 		$addon_file = $oAddonController->getCacheFilePath(Mobile::isFromMobilePhone() ? "mobile" : "pc");
74
-		if(file_exists($addon_file)) include($addon_file);
70
+		if(file_exists($addon_file)) {
71
+			include($addon_file);
72
+		}
75 73
 
76 74
 		if(method_exists($handler, "prepareToPrint"))
77 75
 		{
@@ -84,18 +82,15 @@  discard block
 block discarded – undo
84 82
 		if($httpStatusCode && $httpStatusCode != 200)
85 83
 		{
86 84
 			$this->_printHttpStatusCode($httpStatusCode);
87
-		}
88
-		else
85
+		} else
89 86
 		{
90 87
 			if(Context::getResponseMethod() == 'JSON' || Context::getResponseMethod() == 'JS_CALLBACK')
91 88
 			{
92 89
 				$this->_printJSONHeader();
93
-			}
94
-			else if(Context::getResponseMethod() != 'HTML')
90
+			} else if(Context::getResponseMethod() != 'HTML')
95 91
 			{
96 92
 				$this->_printXMLHeader();
97
-			}
98
-			else
93
+			} else
99 94
 			{
100 95
 				$this->_printHTMLHeader();
101 96
 			}
@@ -117,8 +112,7 @@  discard block
 block discarded – undo
117 112
 		{
118 113
 			header("Content-Encoding: gzip");
119 114
 			print ob_gzhandler($output, 5);
120
-		}
121
-		else
115
+		} else
122 116
 		{
123 117
 			print $output;
124 118
 		}
@@ -213,8 +207,7 @@  discard block
 block discarded – undo
213 207
 				);
214 208
 			}
215 209
 			// dislpay the file and HTML comments
216
-		}
217
-		else
210
+		} else
218 211
 		{
219 212
 
220 213
 			$buff = array();
@@ -269,8 +262,7 @@  discard block
 block discarded – undo
269 262
 						if($query['result'] == 'Success')
270 263
 						{
271 264
 							$query_result = "Query Success";
272
-						}
273
-						else
265
+						} else
274 266
 						{
275 267
 							$query_result = sprintf("Query $s : %d\n\t\t\t   %s", $query['result'], $query['errno'], $query['errstr']);
276 268
 						}
Please login to merge, or discard this patch.
classes/display/HTMLDisplayHandler.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -370,7 +370,7 @@
 block discarded – undo
370 370
 	/**
371 371
 	 * add given .css or .js file names in widget code to Context
372 372
 	 * @param array $matches
373
-	 * @return void
373
+	 * @return string|null
374 374
 	 */
375 375
 	function _transMeta($matches)
376 376
 	{
Please login to merge, or discard this patch.
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -18,9 +18,9 @@  discard block
 block discarded – undo
18 18
 
19 19
 		$template_path = $oModule->getTemplatePath();
20 20
 
21
-		if(!is_dir($template_path))
21
+		if (!is_dir($template_path))
22 22
 		{
23
-			if($oModule->module_info->module == $oModule->module)
23
+			if ($oModule->module_info->module == $oModule->module)
24 24
 			{
25 25
 				$skin = $oModule->origin_module_info->skin;
26 26
 			}
@@ -29,17 +29,17 @@  discard block
 block discarded – undo
29 29
 				$skin = $oModule->module_config->skin;
30 30
 			}
31 31
 
32
-			if(Context::get('module') != 'admin' && strpos(Context::get('act'), 'Admin') === false)
32
+			if (Context::get('module') != 'admin' && strpos(Context::get('act'), 'Admin') === false)
33 33
 			{
34
-				if($skin && is_string($skin))
34
+				if ($skin && is_string($skin))
35 35
 				{
36 36
 					$theme_skin = explode('|@|', $skin);
37 37
 					$template_path = $oModule->getTemplatePath();
38
-					if(count($theme_skin) == 2)
38
+					if (count($theme_skin) == 2)
39 39
 					{
40 40
 						$theme_path = sprintf('./themes/%s', $theme_skin[0]);
41 41
 						// FIXME $theme_path $theme_path $theme_path ??
42
-						if(substr($theme_path, 0, strlen($theme_path)) != $theme_path)
42
+						if (substr($theme_path, 0, strlen($theme_path)) != $theme_path)
43 43
 						{
44 44
 							$template_path = sprintf('%s/modules/%s/', $theme_path, $theme_skin[1]);
45 45
 						}
@@ -65,16 +65,16 @@  discard block
 block discarded – undo
65 65
 		$oSecurity->encodeHTML('is_keyword');
66 66
 
67 67
 		// add .x div for adminitration pages
68
-		if(Context::getResponseMethod() == 'HTML')
68
+		if (Context::getResponseMethod() == 'HTML')
69 69
 		{
70
-			if(Context::get('module') != 'admin' && strpos(Context::get('act'), 'Admin') > 0 && Context::get('act') != 'dispPageAdminContentModify' && Context::get('act') != 'dispPageAdminMobileContentModify')
70
+			if (Context::get('module') != 'admin' && strpos(Context::get('act'), 'Admin') > 0 && Context::get('act') != 'dispPageAdminContentModify' && Context::get('act') != 'dispPageAdminMobileContentModify')
71 71
 			{
72 72
 				$output = '<div class="x">' . $output . '</div>';
73 73
 			}
74 74
 
75
-			if(Context::get('layout') != 'none')
75
+			if (Context::get('layout') != 'none')
76 76
 			{
77
-				if(__DEBUG__ == 3)
77
+				if (__DEBUG__ == 3)
78 78
 				{
79 79
 					$start = getMicroTime();
80 80
 				}
@@ -92,11 +92,11 @@  discard block
 block discarded – undo
92 92
 				$layout_srl = $layout_info->layout_srl;
93 93
 
94 94
 				// compile if connected to the layout
95
-				if($layout_srl > 0)
95
+				if ($layout_srl > 0)
96 96
 				{
97 97
 
98 98
 					// handle separately if the layout is faceoff
99
-					if($layout_info && $layout_info->type == 'faceoff')
99
+					if ($layout_info && $layout_info->type == 'faceoff')
100 100
 					{
101 101
 						$oLayoutModel->doActivateFaceOff($layout_info);
102 102
 						Context::set('layout_info', $layout_info);
@@ -105,16 +105,16 @@  discard block
 block discarded – undo
105 105
 					// search if the changes CSS exists in the admin layout edit window
106 106
 					$edited_layout_css = $oLayoutModel->getUserLayoutCss($layout_srl);
107 107
 
108
-					if(FileHandler::exists($edited_layout_css))
108
+					if (FileHandler::exists($edited_layout_css))
109 109
 					{
110 110
 						Context::loadFile(array($edited_layout_css, 'all', '', 100));
111 111
 					}
112 112
 				}
113
-				if(!$layout_path)
113
+				if (!$layout_path)
114 114
 				{
115 115
 					$layout_path = './common/tpl';
116 116
 				}
117
-				if(!$layout_file)
117
+				if (!$layout_file)
118 118
 				{
119 119
 					$layout_file = 'default_layout';
120 120
 				}
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
 
123 123
 				// if popup_layout, remove admin bar.
124 124
 				$realLayoutPath = FileHandler::getRealPath($layout_path);
125
-				if(substr_compare($realLayoutPath, '/', -1) !== 0)
125
+				if (substr_compare($realLayoutPath, '/', -1) !== 0)
126 126
 				{
127 127
 					$realLayoutPath .= '/';
128 128
 				}
@@ -130,12 +130,12 @@  discard block
 block discarded – undo
130 130
 				$pathInfo = pathinfo($layout_file);
131 131
 				$onlyLayoutFile = $pathInfo['filename'];
132 132
 
133
-				if(__DEBUG__ == 3)
133
+				if (__DEBUG__ == 3)
134 134
 				{
135 135
 					$GLOBALS['__layout_compile_elapsed__'] = getMicroTime() - $start;
136 136
 				}
137 137
 
138
-				if(stripos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== FALSE && (Context::get('_use_ssl') == 'optional' || Context::get('_use_ssl') == 'always'))
138
+				if (stripos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== FALSE && (Context::get('_use_ssl') == 'optional' || Context::get('_use_ssl') == 'always'))
139 139
 				{
140 140
 					Context::addHtmlFooter('<iframe id="xeTmpIframe" name="xeTmpIframe" style="width:1px;height:1px;position:absolute;top:-2px;left:-2px;"></iframe>');
141 141
 				}
@@ -151,12 +151,12 @@  discard block
 block discarded – undo
151 151
 	 */
152 152
 	function prepareToPrint(&$output)
153 153
 	{
154
-		if(Context::getResponseMethod() != 'HTML')
154
+		if (Context::getResponseMethod() != 'HTML')
155 155
 		{
156 156
 			return;
157 157
 		}
158 158
 
159
-		if(__DEBUG__ == 3)
159
+		if (__DEBUG__ == 3)
160 160
 		{
161 161
 			$start = getMicroTime();
162 162
 		}
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
 		$output = preg_replace_callback('/<!--(#)?Meta:([a-z0-9\_\-\/\.\@\:]+)-->/is', array($this, '_transMeta'), $output);
175 175
 
176 176
 		// handles a relative path generated by using the rewrite module
177
-		if(Context::isAllowRewrite())
177
+		if (Context::isAllowRewrite())
178 178
 		{
179 179
 			$url = parse_url(Context::getRequestUri());
180 180
 			$real_path = $url['path'];
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
 			$pattern = '/href=("|\'){1}(\?[^"\']+)/s';
186 186
 			$output = preg_replace($pattern, 'href=$1' . $real_path . '$2', $output);
187 187
 
188
-			if(Context::get('vid'))
188
+			if (Context::get('vid'))
189 189
 			{
190 190
 				$pattern = '/\/' . Context::get('vid') . '\?([^=]+)=/is';
191 191
 				$output = preg_replace($pattern, '/?$1=', $output);
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 		// prevent the 2nd request due to url(none) of the background-image
196 196
 		$output = preg_replace('/url\((["\']?)none(["\']?)\)/is', 'none', $output);
197 197
 
198
-		if(is_array(Context::get('INPUT_ERROR')))
198
+		if (is_array(Context::get('INPUT_ERROR')))
199 199
 		{
200 200
 			$INPUT_ERROR = Context::get('INPUT_ERROR');
201 201
 			$keys = array_keys($INPUT_ERROR);
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
 			$output = preg_replace_callback('@<textarea[^>]*\sname="' . $keys . '".+</textarea>@isU', array(&$this, '_preserveTextAreaValue'), $output);
207 207
 		}
208 208
 
209
-		if(__DEBUG__ == 3)
209
+		if (__DEBUG__ == 3)
210 210
 		{
211 211
 			$GLOBALS['__trans_content_elapsed__'] = getMicroTime() - $start;
212 212
 		}
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
 		// convert the final layout
225 225
 		Context::set('content', $output);
226 226
 		$oTemplate = TemplateHandler::getInstance();
227
-		if(Mobile::isFromMobilePhone())
227
+		if (Mobile::isFromMobilePhone())
228 228
 		{
229 229
 			$this->_loadMobileJSCSS();
230 230
 			$output = $oTemplate->compile('./common/tpl', 'mobile_layout');
@@ -253,12 +253,12 @@  discard block
 block discarded – undo
253 253
 
254 254
 		// get type
255 255
 		$type = 'text';
256
-		if(preg_match('/\stype="([a-z]+)"/i', $str, $m))
256
+		if (preg_match('/\stype="([a-z]+)"/i', $str, $m))
257 257
 		{
258 258
 			$type = strtolower($m[1]);
259 259
 		}
260 260
 
261
-		switch($type)
261
+		switch ($type)
262 262
 		{
263 263
 			case 'text':
264 264
 			case 'hidden':
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
 			case 'radio':
285 285
 			case 'checkbox':
286 286
 				$str = preg_replace('@\schecked(="[^"]*?")?@', ' ', $str);
287
-				if(@preg_match('@\s(?i:value)="' . $INPUT_ERROR[$match[3]] . '"@', $str))
287
+				if (@preg_match('@\s(?i:value)="' . $INPUT_ERROR[$match[3]] . '"@', $str))
288 288
 				{
289 289
 					$str .= ' checked="checked"';
290 290
 				}
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
 		preg_match_all('@<option[^>]*\svalue="([^"]*)".+</option>@isU', $matches[0], $m);
309 309
 
310 310
 		$key = array_search($INPUT_ERROR[$matches[1]], $m[1]);
311
-		if($key === FALSE)
311
+		if ($key === FALSE)
312 312
 		{
313 313
 			return $matches[0];
314 314
 		}
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
 	 */
339 339
 	function _moveStyleToHeader($matches)
340 340
 	{
341
-		if(isset($matches[1]) && stristr($matches[1], 'scoped'))
341
+		if (isset($matches[1]) && stristr($matches[1], 'scoped'))
342 342
 		{
343 343
 			return $matches[0];
344 344
 		}
@@ -374,7 +374,7 @@  discard block
 block discarded – undo
374 374
 	 */
375 375
 	function _transMeta($matches)
376 376
 	{
377
-		if($matches[1])
377
+		if ($matches[1])
378 378
 		{
379 379
 			return '';
380 380
 		}
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
 		$lang_type = Context::getLangType();
392 392
 
393 393
 		// add common JS/CSS files
394
-		if(__DEBUG__ || !__XE_VERSION_STABLE__)
394
+		if (__DEBUG__ || !__XE_VERSION_STABLE__)
395 395
 		{
396 396
 			$oContext->loadFile(array('./common/js/jquery-1.x.js', 'head', 'lt IE 9', -111000), true);
397 397
 			$oContext->loadFile(array('./common/js/jquery.js', 'head', 'gte IE 9', -110000), true);
@@ -413,9 +413,9 @@  discard block
 block discarded – undo
413 413
 		}
414 414
 
415 415
 		// for admin page, add admin css
416
-		if(Context::get('module') == 'admin' || strpos(Context::get('act'), 'Admin') > 0)
416
+		if (Context::get('module') == 'admin' || strpos(Context::get('act'), 'Admin') > 0)
417 417
 		{
418
-			if(__DEBUG__ || !__XE_VERSION_STABLE__)
418
+			if (__DEBUG__ || !__XE_VERSION_STABLE__)
419 419
 			{
420 420
 				$oContext->loadFile(array('./modules/admin/tpl/css/admin.css', '', '', 10), true);
421 421
 				$oContext->loadFile(array("./modules/admin/tpl/css/admin_{$lang_type}.css", '', '', 10), true);
@@ -447,7 +447,7 @@  discard block
 block discarded – undo
447 447
 		$lang_type = Context::getLangType();
448 448
 
449 449
 		// add common JS/CSS files
450
-		if(__DEBUG__ || !__XE_VERSION_STABLE__)
450
+		if (__DEBUG__ || !__XE_VERSION_STABLE__)
451 451
 		{
452 452
 			$oContext->loadFile(array('./common/js/jquery.js', 'head', '', -110000), true);
453 453
 			$oContext->loadFile(array('./common/js/modernizr.js', 'head', '', -100000), true);
Please login to merge, or discard this patch.
Braces   +7 added lines, -14 removed lines patch added patch discarded remove patch
@@ -23,8 +23,7 @@  discard block
 block discarded – undo
23 23
 			if($oModule->module_info->module == $oModule->module)
24 24
 			{
25 25
 				$skin = $oModule->origin_module_info->skin;
26
-			}
27
-			else
26
+			} else
28 27
 			{
29 28
 				$skin = $oModule->module_config->skin;
30 29
 			}
@@ -44,13 +43,11 @@  discard block
 block discarded – undo
44 43
 							$template_path = sprintf('%s/modules/%s/', $theme_path, $theme_skin[1]);
45 44
 						}
46 45
 					}
47
-				}
48
-				else
46
+				} else
49 47
 				{
50 48
 					$template_path = $oModule->getTemplatePath();
51 49
 				}
52
-			}
53
-			else
50
+			} else
54 51
 			{
55 52
 				$template_path = $oModule->getTemplatePath();
56 53
 			}
@@ -228,8 +225,7 @@  discard block
 block discarded – undo
228 225
 		{
229 226
 			$this->_loadMobileJSCSS();
230 227
 			$output = $oTemplate->compile('./common/tpl', 'mobile_layout');
231
-		}
232
-		else
228
+		} else
233 229
 		{
234 230
 			$this->_loadJSCSS();
235 231
 			$output = $oTemplate->compile('./common/tpl', 'common_layout');
@@ -402,8 +398,7 @@  discard block
 block discarded – undo
402 398
 			$oContext->loadFile(array('./common/js/xml_handler.js', 'head', '', -100000), true);
403 399
 			$oContext->loadFile(array('./common/js/xml_js_filter.js', 'head', '', -100000), true);
404 400
 			$oContext->loadFile(array('./common/css/xe.css', '', '', -1000000), true);
405
-		}
406
-		else
401
+		} else
407 402
 		{
408 403
 			$oContext->loadFile(array('./common/js/jquery-1.x.min.js', 'head', 'lt IE 9', -111000), true);
409 404
 			$oContext->loadFile(array('./common/js/jquery.min.js', 'head', 'gte IE 9', -110000), true);
@@ -424,8 +419,7 @@  discard block
 block discarded – undo
424 419
 				$oContext->loadFile(array('./modules/admin/tpl/css/admin.bootstrap.css', '', '', 1), true);
425 420
 				$oContext->loadFile(array('./modules/admin/tpl/js/jquery.tmpl.js', '', '', 1), true);
426 421
 				$oContext->loadFile(array('./modules/admin/tpl/js/jquery.jstree.js', '', '', 1), true);
427
-			}
428
-			else
422
+			} else
429 423
 			{
430 424
 				$oContext->loadFile(array('./modules/admin/tpl/css/admin.min.css', '', '', 10), true);
431 425
 				$oContext->loadFile(array("./modules/admin/tpl/css/admin_{$lang_type}.css", '', '', 10), true);
@@ -458,8 +452,7 @@  discard block
 block discarded – undo
458 452
 			$oContext->loadFile(array('./common/js/xml_js_filter.js', 'head', '', -100000), true);
459 453
 			$oContext->loadFile(array('./common/css/xe.css', '', '', -1000000), true);
460 454
 			$oContext->loadFile(array('./common/css/mobile.css', '', '', -1000000), true);
461
-		}
462
-		else
455
+		} else
463 456
 		{
464 457
 			$oContext->loadFile(array('./common/js/jquery.min.js', 'head', '', -110000), true);
465 458
 			$oContext->loadFile(array('./common/js/x.min.js', 'head', '', -100000), true);
Please login to merge, or discard this patch.