@@ -7,12 +7,11 @@ |
||
| 7 | 7 | */ |
| 8 | 8 | namespace PH7; |
| 9 | 9 | |
| 10 | -use |
|
| 11 | -PH7\Framework\Parse\Emoticon, |
|
| 12 | -PH7\Framework\Navigation\Page, |
|
| 13 | -PH7\Framework\Analytics\Statistic, |
|
| 14 | -PH7\Framework\Mvc\Router\Uri, |
|
| 15 | -PH7\Framework\Url\Header; |
|
| 10 | +use PH7\Framework\Parse\Emoticon; |
|
| 11 | +use PH7\Framework\Navigation\Page; |
|
| 12 | +use PH7\Framework\Analytics\Statistic; |
|
| 13 | +use PH7\Framework\Mvc\Router\Uri; |
|
| 14 | +use PH7\Framework\Url\Header; |
|
| 16 | 15 | |
| 17 | 16 | class MainController extends Controller |
| 18 | 17 | { |
@@ -9,7 +9,6 @@ |
||
| 9 | 9 | |
| 10 | 10 | use PH7\Framework\Security\Ban\Ban; |
| 11 | 11 | use PH7\Framework\Navigation\Page; |
| 12 | -use PH7\Framework\Cache\Cache; |
|
| 13 | 12 | use PH7\Framework\Analytics\Statistic; |
| 14 | 13 | use PH7\Framework\Security\CSRF\Token as SecurityToken; |
| 15 | 14 | use PH7\Framework\Mvc\Router\Uri; |
@@ -7,10 +7,9 @@ |
||
| 7 | 7 | */ |
| 8 | 8 | namespace PH7; |
| 9 | 9 | |
| 10 | -use |
|
| 11 | -PH7\Framework\Navigation\Page, |
|
| 12 | -PH7\Framework\Mvc\Router\Uri, |
|
| 13 | -PH7\Framework\Url\Header; |
|
| 10 | +use PH7\Framework\Navigation\Page; |
|
| 11 | +use PH7\Framework\Mvc\Router\Uri; |
|
| 12 | +use PH7\Framework\Url\Header; |
|
| 14 | 13 | |
| 15 | 14 | class BrowseController extends Controller |
| 16 | 15 | { |
@@ -418,7 +418,7 @@ discard block |
||
| 418 | 418 | } |
| 419 | 419 | |
| 420 | 420 | /** |
| 421 | - * @return string |
|
| 421 | + * @return resource |
|
| 422 | 422 | */ |
| 423 | 423 | public function getFileName() |
| 424 | 424 | { |
@@ -428,7 +428,7 @@ discard block |
||
| 428 | 428 | /** |
| 429 | 429 | * Determine and get the type of the image (even an unallowed image type) by reading the first bytes and checking its signature. |
| 430 | 430 | * |
| 431 | - * @return string|bool When a correct signature is found, returns the appropriate value, FALSE otherwise. |
|
| 431 | + * @return integer When a correct signature is found, returns the appropriate value, FALSE otherwise. |
|
| 432 | 432 | */ |
| 433 | 433 | public function getType() |
| 434 | 434 | { |
@@ -12,6 +12,10 @@ discard block |
||
| 12 | 12 | class ModeratorModel extends ModeratorCoreModel |
| 13 | 13 | { |
| 14 | 14 | |
| 15 | + /** |
|
| 16 | + * @param integer $iOffset |
|
| 17 | + * @param integer $iLimit |
|
| 18 | + */ |
|
| 15 | 19 | public function getAlbumsPicture($iOffset, $iLimit) |
| 16 | 20 | { |
| 17 | 21 | $iOffset = (int)$iOffset; |
@@ -25,6 +29,10 @@ discard block |
||
| 25 | 29 | return $rStmt->fetchAll(\PDO::FETCH_OBJ); |
| 26 | 30 | } |
| 27 | 31 | |
| 32 | + /** |
|
| 33 | + * @param integer $iOffset |
|
| 34 | + * @param integer $iLimit |
|
| 35 | + */ |
|
| 28 | 36 | public function getPictures($iOffset, $iLimit) |
| 29 | 37 | { |
| 30 | 38 | $iOffset = (int)$iOffset; |
@@ -38,6 +46,10 @@ discard block |
||
| 38 | 46 | return $rStmt->fetchAll(\PDO::FETCH_OBJ); |
| 39 | 47 | } |
| 40 | 48 | |
| 49 | + /** |
|
| 50 | + * @param integer $iOffset |
|
| 51 | + * @param integer $iLimit |
|
| 52 | + */ |
|
| 41 | 53 | public function getAlbumsVideo($iOffset, $iLimit) |
| 42 | 54 | { |
| 43 | 55 | $iOffset = (int)$iOffset; |
@@ -51,6 +63,10 @@ discard block |
||
| 51 | 63 | return $rStmt->fetchAll(\PDO::FETCH_OBJ); |
| 52 | 64 | } |
| 53 | 65 | |
| 66 | + /** |
|
| 67 | + * @param integer $iOffset |
|
| 68 | + * @param integer $iLimit |
|
| 69 | + */ |
|
| 54 | 70 | public function getVideos($iOffset, $iLimit) |
| 55 | 71 | { |
| 56 | 72 | $iOffset = (int)$iOffset; |
@@ -64,6 +80,10 @@ discard block |
||
| 64 | 80 | return $rStmt->fetchAll(\PDO::FETCH_OBJ); |
| 65 | 81 | } |
| 66 | 82 | |
| 83 | + /** |
|
| 84 | + * @param integer $iOffset |
|
| 85 | + * @param integer $iLimit |
|
| 86 | + */ |
|
| 67 | 87 | public function getAvatars($iOffset, $iLimit) |
| 68 | 88 | { |
| 69 | 89 | $iOffset = (int)$iOffset; |
@@ -76,6 +96,10 @@ discard block |
||
| 76 | 96 | return $rStmt->fetchAll(\PDO::FETCH_OBJ); |
| 77 | 97 | } |
| 78 | 98 | |
| 99 | + /** |
|
| 100 | + * @param integer $iOffset |
|
| 101 | + * @param integer $iLimit |
|
| 102 | + */ |
|
| 79 | 103 | public function getBackgrounds($iOffset, $iLimit) |
| 80 | 104 | { |
| 81 | 105 | $iOffset = (int)$iOffset; |
@@ -260,6 +260,11 @@ discard block |
||
| 260 | 260 | } |
| 261 | 261 | } |
| 262 | 262 | |
| 263 | + /** |
|
| 264 | + * @param string $sModule |
|
| 265 | + * @param string $sController |
|
| 266 | + * @param string $sAction |
|
| 267 | + */ |
|
| 263 | 268 | public function url($sModule, $sController, $sAction, $sVars = null, $bClear = true) |
| 264 | 269 | { |
| 265 | 270 | $sUrl = Uri::get($sModule, $sController, $sAction, $sVars, $bClear); |
@@ -527,7 +532,7 @@ discard block |
||
| 527 | 532 | * @internal If it's an IPv6, show only the beginning, otherwise it would be too long in the template. |
| 528 | 533 | * @param string $sIp Allows to speciy another IP address than the client one. |
| 529 | 534 | * @param boolean $bPrint Print or Return the HTML code. Default TRUE |
| 530 | - * @return mixed (string | void) |
|
| 535 | + * @return null|string (string | void) |
|
| 531 | 536 | */ |
| 532 | 537 | public function ip($sIp = null, $bPrint = true) |
| 533 | 538 | { |
@@ -544,7 +549,7 @@ discard block |
||
| 544 | 549 | * Show the geolocation of the user (with link that points to the Country controller). |
| 545 | 550 | * |
| 546 | 551 | * @param boolean $bPrint Print or Return the HTML code. Default TRUE |
| 547 | - * @return mixed (string | void) |
|
| 552 | + * @return null|string (string | void) |
|
| 548 | 553 | */ |
| 549 | 554 | public function geoIp($bPrint = true) |
| 550 | 555 | { |
@@ -576,7 +581,7 @@ discard block |
||
| 576 | 581 | /** |
| 577 | 582 | * Get the User Avatar. |
| 578 | 583 | * |
| 579 | - * @param string $sUername |
|
| 584 | + * @param string $sUsername |
|
| 580 | 585 | * @param string $sSex |
| 581 | 586 | * @param integer $iSize |
| 582 | 587 | * @return void Html contents. URL avatar default 150px or the user avatar. |
@@ -15,6 +15,9 @@ discard block |
||
| 15 | 15 | |
| 16 | 16 | const CACHE_GROUP = 'db/sys/core/like'; |
| 17 | 17 | |
| 18 | + /** |
|
| 19 | + * @param string $sKey |
|
| 20 | + */ |
|
| 18 | 21 | public function select($sKey) |
| 19 | 22 | { |
| 20 | 23 | $this->cache->start(self::CACHE_GROUP, 'select' . $sKey, 3600*168); |
@@ -32,6 +35,9 @@ discard block |
||
| 32 | 35 | return $oData; |
| 33 | 36 | } |
| 34 | 37 | |
| 38 | + /** |
|
| 39 | + * @param string $sKey |
|
| 40 | + */ |
|
| 35 | 41 | public function update($sKey, $fLastIp) |
| 36 | 42 | { |
| 37 | 43 | $rStmt = Db::getInstance()->prepare('UPDATE' . Db::prefix('Likes') . 'SET votes = votes + 1 , lastVote = NOW() , lastIp =:lastIp WHERE keyId =:key'); |
@@ -40,6 +46,9 @@ discard block |
||
| 40 | 46 | return $rStmt->execute(); |
| 41 | 47 | } |
| 42 | 48 | |
| 49 | + /** |
|
| 50 | + * @param string $sKey |
|
| 51 | + */ |
|
| 43 | 52 | public function insert($sKey, $fLastIp) |
| 44 | 53 | { |
| 45 | 54 | $rStmt = Db::getInstance()->prepare('INSERT INTO' . Db::prefix('Likes') . 'SET keyId =:key ,votes=1 , lastVote = NOW(), lastIp =:lastIp'); |
@@ -68,6 +68,9 @@ discard block |
||
| 68 | 68 | $this->_bIsGoogleClosure = (bool) Config::getInstance()->values['cache']['enable.js.closure_compiler_service']; |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | + /** |
|
| 72 | + * @param string $sPhp |
|
| 73 | + */ |
|
| 71 | 74 | public function parsePhp($sPhp) |
| 72 | 75 | { |
| 73 | 76 | $sPhp = preg_replace('#/\*.*+\*#', '', $sPhp); # Removing PHP comments |
@@ -90,6 +93,9 @@ discard block |
||
| 90 | 93 | return $sHtml; |
| 91 | 94 | } |
| 92 | 95 | |
| 96 | + /** |
|
| 97 | + * @param string|boolean $sContent |
|
| 98 | + */ |
|
| 93 | 99 | public function parseCss($sContent) |
| 94 | 100 | { |
| 95 | 101 | if ($this->_bJavaCompiler) |
@@ -144,6 +150,9 @@ discard block |
||
| 144 | 150 | return $sCssMinified; |
| 145 | 151 | } |
| 146 | 152 | |
| 153 | + /** |
|
| 154 | + * @param string|boolean $sContent |
|
| 155 | + */ |
|
| 147 | 156 | public function parseJs($sContent) |
| 148 | 157 | { |
| 149 | 158 | if ($this->_bJavaCompiler) |
@@ -182,6 +182,7 @@ |
||
| 182 | 182 | * For all classes, hack to remove the namespace, slash and backslash. |
| 183 | 183 | * |
| 184 | 184 | * @param string The class name to clean. |
| 185 | + * @param string $sClass |
|
| 185 | 186 | * @return string The class cleaned. |
| 186 | 187 | */ |
| 187 | 188 | private function _clean($sClass) |
@@ -13,10 +13,9 @@ |
||
| 13 | 13 | namespace PH7\Framework\Loader; |
| 14 | 14 | defined('PH7') or exit('Restricted access'); |
| 15 | 15 | |
| 16 | -use |
|
| 17 | -PH7\Framework\File\File, |
|
| 18 | -PH7\Framework\Registry\Registry, |
|
| 19 | -PH7\Framework\Date\Various as VDate; |
|
| 16 | +use PH7\Framework\File\File; |
|
| 17 | +use PH7\Framework\Registry\Registry; |
|
| 18 | +use PH7\Framework\Date\Various as VDate; |
|
| 20 | 19 | |
| 21 | 20 | /** |
| 22 | 21 | * We include the Singleton trait before use, because at this stage the class can not load the trait automatically. |