@@ -7,7 +7,8 @@ |
||
| 7 | 7 | */ |
| 8 | 8 | namespace PH7; |
| 9 | 9 | |
| 10 | -use PH7\Framework\Url\Header, PH7\Framework\Mvc\Router\Uri; |
|
| 10 | +use PH7\Framework\Url\Header; |
|
| 11 | +use PH7\Framework\Mvc\Router\Uri; |
|
| 11 | 12 | |
| 12 | 13 | class SettingController extends Controller |
| 13 | 14 | { |
@@ -8,16 +8,15 @@ |
||
| 8 | 8 | namespace PH7; |
| 9 | 9 | defined('PH7') or exit('Restricted access'); |
| 10 | 10 | |
| 11 | -use |
|
| 12 | -PH7\Framework\Mvc\Model\DbConfig, |
|
| 13 | -PH7\Framework\Security\Security, |
|
| 14 | -PH7\Framework\Mvc\Request\Http, |
|
| 15 | -PH7\Framework\Util\Various, |
|
| 16 | -PH7\Framework\Cookie\Cookie, |
|
| 17 | -PH7\Framework\Ip\Ip, |
|
| 18 | -PH7\Framework\Date\CDateTime, |
|
| 19 | -PH7\Framework\Mvc\Router\Uri, |
|
| 20 | -PH7\Framework\Url\Header; |
|
| 11 | +use PH7\Framework\Mvc\Model\DbConfig; |
|
| 12 | +use PH7\Framework\Security\Security; |
|
| 13 | +use PH7\Framework\Mvc\Request\Http; |
|
| 14 | +use PH7\Framework\Util\Various; |
|
| 15 | +use PH7\Framework\Cookie\Cookie; |
|
| 16 | +use PH7\Framework\Ip\Ip; |
|
| 17 | +use PH7\Framework\Date\CDateTime; |
|
| 18 | +use PH7\Framework\Mvc\Router\Uri; |
|
| 19 | +use PH7\Framework\Url\Header; |
|
| 21 | 20 | |
| 22 | 21 | class JoinFormProcess extends Form |
| 23 | 22 | { |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | * Assignment of attributes. |
| 22 | 22 | * |
| 23 | 23 | * @param integer $iProfileId Profile ID. |
| 24 | - * @param integer $iVisitor ID User ID (visitor). Default NULL (this attribute is null only for the get method). |
|
| 24 | + * @param integer $iVisitorId ID User ID (visitor). Default NULL (this attribute is null only for the get method). |
|
| 25 | 25 | * @param string $sDateVisit The date of last visit. Default NULL (this attribute is null only for the get method). |
| 26 | 26 | */ |
| 27 | 27 | public function __construct($iProfileId, $iVisitorId = null, $sDateVisit = null) |
@@ -15,6 +15,10 @@ discard block |
||
| 15 | 15 | class WallModel extends Framework\Mvc\Model\Engine\Model |
| 16 | 16 | { |
| 17 | 17 | |
| 18 | + /** |
|
| 19 | + * @param string $iProfileId |
|
| 20 | + * @param string $sCreatedDate |
|
| 21 | + */ |
|
| 18 | 22 | public function add($iProfileId, $sPost, $sCreatedDate) |
| 19 | 23 | { |
| 20 | 24 | $rStmt = Db::getInstance()->prepare('INSERT INTO' . Db::prefix('MembersWall') . '(profileId, post, createdDate) VALUES (:profileId, :post, :createdDate)'); |
@@ -24,6 +28,10 @@ discard block |
||
| 24 | 28 | return $rStmt->execute(); |
| 25 | 29 | } |
| 26 | 30 | |
| 31 | + /** |
|
| 32 | + * @param string $iProfileId |
|
| 33 | + * @param string $sUpdatedDate |
|
| 34 | + */ |
|
| 27 | 35 | public function edit($iProfileId, $sPost, $sUpdatedDate) |
| 28 | 36 | { |
| 29 | 37 | $rStmt = Db::getInstance()->prepare('UPDATE' . Db::prefix('MembersWall') . 'SET post = :post, updatedDate = :updatedDate WHERE profileId = :profileId'); |
@@ -33,6 +41,9 @@ discard block |
||
| 33 | 41 | return $rStmt->execute(); |
| 34 | 42 | } |
| 35 | 43 | |
| 44 | + /** |
|
| 45 | + * @param string $iProfileId |
|
| 46 | + */ |
|
| 36 | 47 | public function delete($iProfileId, $iWallId) |
| 37 | 48 | { |
| 38 | 49 | $rStmt = Db::getInstance()->prepare('DELETE FROM'.Db::prefix('MembersWall') . 'WHERE :profileId=:profileId AND wallId=:wallId'); |
@@ -41,6 +52,12 @@ discard block |
||
| 41 | 52 | return $rStmt->execute(); |
| 42 | 53 | } |
| 43 | 54 | |
| 55 | + /** |
|
| 56 | + * @param string $iProfileId |
|
| 57 | + * @param string $iWallId |
|
| 58 | + * @param integer $iOffset |
|
| 59 | + * @param integer $iLimit |
|
| 60 | + */ |
|
| 44 | 61 | public function get($iProfileId, $iWallId = null, $iOffset, $iLimit) |
| 45 | 62 | { |
| 46 | 63 | $iOffset = (int) $iOffset; |
@@ -59,6 +76,10 @@ discard block |
||
| 59 | 76 | return $oRow; |
| 60 | 77 | } |
| 61 | 78 | |
| 79 | + /** |
|
| 80 | + * @param integer $iOffset |
|
| 81 | + * @param integer $iLimit |
|
| 82 | + */ |
|
| 62 | 83 | public function getCommentProfile($iProfileId, $iOffset, $iLimit) |
| 63 | 84 | { |
| 64 | 85 | return (new CommentCoreModel)->read($iProfileId, 1, $iOffset, $iLimit, 'profile'); |
@@ -15,13 +15,12 @@ |
||
| 15 | 15 | namespace PH7; |
| 16 | 16 | defined('PH7') or exit('Restricted access'); |
| 17 | 17 | |
| 18 | -use |
|
| 19 | -PH7\Framework\Util\Various, |
|
| 20 | -PH7\Framework\Mvc\Model\DbConfig, |
|
| 21 | -PH7\Framework\Mvc\Router\Uri, |
|
| 22 | -PH7\Framework\Url\Header, |
|
| 23 | -PH7\Framework\File as F, |
|
| 24 | -PH7\Framework\Video as V; |
|
| 18 | +use PH7\Framework\Util\Various; |
|
| 19 | +use PH7\Framework\Mvc\Model\DbConfig; |
|
| 20 | +use PH7\Framework\Mvc\Router\Uri; |
|
| 21 | +use PH7\Framework\Url\Header; |
|
| 22 | +use PH7\Framework\File as F; |
|
| 23 | +use PH7\Framework\Video as V; |
|
| 25 | 24 | |
| 26 | 25 | class VideoFormProcess extends Form |
| 27 | 26 | { |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | /** |
| 41 | - * @param char $cFormat |
|
| 41 | + * @param string $cFormat |
|
| 42 | 42 | * @param string $sDate |
| 43 | 43 | * @return string |
| 44 | 44 | * @throws \PH7\Framework\Date\Exception If the date format is incorrect. |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | /** |
| 31 | 31 | * @desc Add a role |
| 32 | 32 | * @param string $sName |
| 33 | - * @return object Instance of Role |
|
| 33 | + * @return Role Instance of Role |
|
| 34 | 34 | */ |
| 35 | 35 | public function addRole($sName) |
| 36 | 36 | { |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | * @desc Add a resource |
| 47 | 47 | * @param string $sName |
| 48 | 48 | * @param array $aAllowed |
| 49 | - * @return object Instance of Resource |
|
| 49 | + * @return Resource Instance of Resource |
|
| 50 | 50 | */ |
| 51 | 51 | public function addResource($sName, array $aAllowed) |
| 52 | 52 | { |
@@ -361,7 +361,6 @@ |
||
| 361 | 361 | * For all the parameters : http://code.google.com/intl/fr-FR/apis/analytics/docs/gdata/gdataReferenceDataFeed.html |
| 362 | 362 | * |
| 363 | 363 | * @param string $metrics the metrics |
| 364 | - * @param string $uri the url of the website page (ex : /myurl/) |
|
| 365 | 364 | * |
| 366 | 365 | * @return array |
| 367 | 366 | */ |
@@ -62,7 +62,6 @@ discard block |
||
| 62 | 62 | /** |
| 63 | 63 | * Returns the elapsed time, readable or not |
| 64 | 64 | * |
| 65 | - * @param boolean $readable Whether the result must be human readable |
|
| 66 | 65 | * @param string $format The format to display (printf format) |
| 67 | 66 | * @return string|float |
| 68 | 67 | */ |
@@ -76,7 +75,6 @@ discard block |
||
| 76 | 75 | /** |
| 77 | 76 | * Returns the memory usage at the end checkpoint |
| 78 | 77 | * |
| 79 | - * @param boolean $readable Whether the result must be human readable |
|
| 80 | 78 | * @param string $format The format to display (printf format) |
| 81 | 79 | * @return string|float |
| 82 | 80 | */ |
@@ -88,7 +86,6 @@ discard block |
||
| 88 | 86 | /** |
| 89 | 87 | * Returns the memory peak, readable or not |
| 90 | 88 | * |
| 91 | - * @param boolean $readable Whether the result must be human readable |
|
| 92 | 89 | * @param string $format The format to display (printf format) |
| 93 | 90 | * @return string|float |
| 94 | 91 | */ |