rename $range to $status as it is used in all other methods; add privacy to the parameter description so we find it again next time
This commit is contained in:
parent
2c4bf8dacf
commit
966fdf808c
1 changed files with 8 additions and 8 deletions
|
@ -253,18 +253,18 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService
|
||||||
/**
|
/**
|
||||||
* Counts bookmarks for a user.
|
* Counts bookmarks for a user.
|
||||||
*
|
*
|
||||||
* @param integer $uId User ID
|
* @param integer $uId User ID
|
||||||
* @param string $range Range of bookmarks:
|
* @param string $status Bookmark visibility/privacy settings:
|
||||||
* 'public', 'shared', 'private'
|
* 'public', 'shared', 'private'
|
||||||
* or 'all'
|
* or 'all'
|
||||||
*
|
*
|
||||||
* @return integer Number of bookmarks
|
* @return integer Number of bookmarks
|
||||||
*/
|
*/
|
||||||
public function countBookmarks($uId, $range = 'public')
|
public function countBookmarks($uId, $status = 'public')
|
||||||
{
|
{
|
||||||
$sql = 'SELECT COUNT(*) as "0" FROM '. $this->getTableName();
|
$sql = 'SELECT COUNT(*) as "0" FROM '. $this->getTableName();
|
||||||
$sql.= ' WHERE uId = ' . intval($uId);
|
$sql.= ' WHERE uId = ' . intval($uId);
|
||||||
switch ($range) {
|
switch ($status) {
|
||||||
case 'all':
|
case 'all':
|
||||||
//no constraints
|
//no constraints
|
||||||
break;
|
break;
|
||||||
|
@ -439,7 +439,7 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService
|
||||||
* @param string $title Bookmark title
|
* @param string $title Bookmark title
|
||||||
* @param string $description Long bookmark description
|
* @param string $description Long bookmark description
|
||||||
* @param string $privateNote Private note for the user.
|
* @param string $privateNote Private note for the user.
|
||||||
* @param string $status Bookmark visibility:
|
* @param string $status Bookmark visibility / privacy settings:
|
||||||
* 0 - public
|
* 0 - public
|
||||||
* 1 - shared
|
* 1 - shared
|
||||||
* 2 - private
|
* 2 - private
|
||||||
|
@ -554,7 +554,7 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService
|
||||||
* @param string $title Bookmark title
|
* @param string $title Bookmark title
|
||||||
* @param string $description Long bookmark description
|
* @param string $description Long bookmark description
|
||||||
* @param string $privateNote Private note for the user.
|
* @param string $privateNote Private note for the user.
|
||||||
* @param string $status Bookmark visibility:
|
* @param string $status Bookmark visibility / privacy setting:
|
||||||
* 0 - public
|
* 0 - public
|
||||||
* 1 - shared
|
* 1 - shared
|
||||||
* 2 - private
|
* 2 - private
|
||||||
|
|
Loading…
Reference in a new issue