@@ -106,6 +106,6 @@ |
||
| 106 | 106 | */ |
| 107 | 107 | public static function Container() |
| 108 | 108 | { |
| 109 | - return self::getInstance()->getContainer(); |
|
| 109 | + return self::getInstance()->getContainer(); |
|
| 110 | 110 | } |
| 111 | 111 | } |
@@ -13,10 +13,10 @@ |
||
| 13 | 13 | $tpl->name = 'usertops'; |
| 14 | 14 | $tpl->menuitem = MNU_CACHES_USERTOPS; |
| 15 | 15 | |
| 16 | -$userId = (int) isset($_REQUEST['userid']) ? $_REQUEST['userid']: 0; |
|
| 16 | +$userId = (int)isset($_REQUEST['userid']) ? $_REQUEST['userid'] : 0; |
|
| 17 | 17 | $ocOnly = isset($_REQUEST['oconly']) && $_REQUEST['oconly']; |
| 18 | 18 | |
| 19 | -$sUsername = $connection->fetchColumn('SELECT `username` FROM `user` WHERE `user_id` = :userId',['userId' => $userId]); |
|
| 19 | +$sUsername = $connection->fetchColumn('SELECT `username` FROM `user` WHERE `user_id` = :userId', ['userId' => $userId]); |
|
| 20 | 20 | if ($sUsername == null) { |
| 21 | 21 | $tpl->error(ERROR_USER_NOT_EXISTS); |
| 22 | 22 | } |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | $jpegQuality = 80; |
| 12 | 12 | $fontFile = __DIR__ . '/resource2/' . $opt['template']['style'] . '/fonts/dejavu/ttf/DejaVuSans.ttf'; |
| 13 | 13 | |
| 14 | -$userId = isset($_REQUEST['userid']) ? (int) $_REQUEST['userid'] : 0; |
|
| 14 | +$userId = isset($_REQUEST['userid']) ? (int)$_REQUEST['userid'] : 0; |
|
| 15 | 15 | $lang = isset($_REQUEST['lang']) ? mb_strtoupper($_REQUEST['lang']) : $opt['template']['locale']; |
| 16 | 16 | |
| 17 | 17 | if (!isset($opt['locale'][$lang])) { |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | $connection = AppKernel::Container()->get(Connection::class); |
| 23 | 23 | |
| 24 | 24 | $fileName = __DIR__ . '/images/statpics/statpic' . $userId . $lang . '.jpg'; |
| 25 | -$userStatisticPicture = (int) $connection->createQueryBuilder() |
|
| 25 | +$userStatisticPicture = (int)$connection->createQueryBuilder() |
|
| 26 | 26 | ->select('COUNT(*)') |
| 27 | 27 | ->from('user_statpic') |
| 28 | 28 | ->where('user_id = :userId') |
@@ -48,9 +48,9 @@ discard block |
||
| 48 | 48 | |
| 49 | 49 | if (is_array($userData)) { |
| 50 | 50 | $username = $userData['username']; |
| 51 | - $found = (int) $userData['found']; |
|
| 52 | - $hidden = (int) $userData['hidden']; |
|
| 53 | - $logo = (int) $userData['statpic_logo']; |
|
| 51 | + $found = (int)$userData['found']; |
|
| 52 | + $hidden = (int)$userData['hidden']; |
|
| 53 | + $logo = (int)$userData['statpic_logo']; |
|
| 54 | 54 | $logoText = $userData['statpic_text']; |
| 55 | 55 | |
| 56 | 56 | $textCounterStatistic = $translate->t('Finds: %1 Hidden: %2', '', '', 0, '', 0, $lang); |
@@ -422,7 +422,7 @@ discard block |
||
| 422 | 422 | /** |
| 423 | 423 | * @deprecated use DBAL Conenction instead. See adminreports.php for an example implementation |
| 424 | 424 | * @param $value |
| 425 | - * @return false|string |
|
| 425 | + * @return string |
|
| 426 | 426 | */ |
| 427 | 427 | function sql_escape($value) |
| 428 | 428 | { |
@@ -436,7 +436,7 @@ discard block |
||
| 436 | 436 | /** |
| 437 | 437 | * @deprecated use DBAL Conenction instead. See adminreports.php for an example implementation |
| 438 | 438 | * @param $value |
| 439 | - * @return false|mixed|string |
|
| 439 | + * @return string |
|
| 440 | 440 | */ |
| 441 | 441 | function sql_escape_backtick($value) |
| 442 | 442 | { |
@@ -547,7 +547,7 @@ discard block |
||
| 547 | 547 | |
| 548 | 548 | /** |
| 549 | 549 | * @deprecated use DBAL Conenction instead. See adminreports.php for an example implementation |
| 550 | - * @param $rs |
|
| 550 | + * @param resource $rs |
|
| 551 | 551 | * @return array |
| 552 | 552 | */ |
| 553 | 553 | function sql_fetch_row($rs) |
@@ -1279,7 +1279,7 @@ |
||
| 1279 | 1279 | |
| 1280 | 1280 | /** |
| 1281 | 1281 | * @deprecated use DBAL Conenction instead. See adminreports.php for an example implementation |
| 1282 | - * @param $f |
|
| 1282 | + * @param resource $f |
|
| 1283 | 1283 | * @param resource $rs |
| 1284 | 1284 | * @param $table |
| 1285 | 1285 | * @param bool $truncate |
@@ -146,6 +146,9 @@ discard block |
||
| 146 | 146 | return $this->reCachelist->setValue('description', $desc); |
| 147 | 147 | } |
| 148 | 148 | |
| 149 | + /** |
|
| 150 | + * @param string $pw |
|
| 151 | + */ |
|
| 149 | 152 | public function setPassword($pw) |
| 150 | 153 | { |
| 151 | 154 | $this->reCachelist->setValue('password', $pw); |
@@ -226,6 +229,9 @@ discard block |
||
| 226 | 229 | return sql_fetch_assoc_table($rs); |
| 227 | 230 | } |
| 228 | 231 | |
| 232 | + /** |
|
| 233 | + * @param string $wp |
|
| 234 | + */ |
|
| 229 | 235 | public function addCacheByWP($wp) |
| 230 | 236 | { |
| 231 | 237 | $cache = cache::fromWP($wp); |
@@ -262,6 +268,9 @@ discard block |
||
| 262 | 268 | return $this->addCache(new cache($cache_id)); |
| 263 | 269 | } |
| 264 | 270 | |
| 271 | + /** |
|
| 272 | + * @param cache $cache |
|
| 273 | + */ |
|
| 265 | 274 | public function addCache($cache) |
| 266 | 275 | { |
| 267 | 276 | if (!$cache->exist() || !$cache->allowView()) { |
@@ -497,6 +506,9 @@ discard block |
||
| 497 | 506 | return false; |
| 498 | 507 | } |
| 499 | 508 | |
| 509 | + /** |
|
| 510 | + * @param string $condition |
|
| 511 | + */ |
|
| 500 | 512 | private static function getLists( |
| 501 | 513 | $condition, |
| 502 | 514 | $prio = 0, |
@@ -92,6 +92,9 @@ |
||
| 92 | 92 | return $returnValue; |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | + /** |
|
| 96 | + * @param boolean $showall |
|
| 97 | + */ |
|
| 95 | 98 | public function getRS($selectedId, $showall) |
| 96 | 99 | { |
| 97 | 100 | if ($showall != false) { |
@@ -112,6 +112,9 @@ discard block |
||
| 112 | 112 | } |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | + /** |
|
| 116 | + * @return string |
|
| 117 | + */ |
|
| 115 | 118 | public static function landFromLocid($locid) |
| 116 | 119 | { |
| 117 | 120 | if (!is_numeric($locid)) { |
@@ -139,6 +142,9 @@ discard block |
||
| 139 | 142 | } |
| 140 | 143 | } |
| 141 | 144 | |
| 145 | + /** |
|
| 146 | + * @return string |
|
| 147 | + */ |
|
| 142 | 148 | public static function regierungsbezirkFromLocid($locid) |
| 143 | 149 | { |
| 144 | 150 | if (!is_numeric($locid)) { |
@@ -165,6 +171,9 @@ discard block |
||
| 165 | 171 | } |
| 166 | 172 | } |
| 167 | 173 | |
| 174 | + /** |
|
| 175 | + * @return string |
|
| 176 | + */ |
|
| 168 | 177 | public static function landkreisFromLocid($locid) |
| 169 | 178 | { |
| 170 | 179 | if (!is_numeric($locid)) { |
@@ -164,6 +164,9 @@ discard block |
||
| 164 | 164 | self::$aLabels[$name] = unserialize($serialized); |
| 165 | 165 | } |
| 166 | 166 | |
| 167 | + /** |
|
| 168 | + * @param string $name |
|
| 169 | + */ |
|
| 167 | 170 | public static function getLabels($name) |
| 168 | 171 | { |
| 169 | 172 | if (isset(self::$aLabels[$name])) { |
@@ -173,6 +176,9 @@ discard block |
||
| 173 | 176 | return false; |
| 174 | 177 | } |
| 175 | 178 | |
| 179 | + /** |
|
| 180 | + * @param string $name |
|
| 181 | + */ |
|
| 176 | 182 | public static function getLabelValue($name, $id) |
| 177 | 183 | { |
| 178 | 184 | if (isset(self::$aLabels[$name])) { |