aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-03-25 07:44:07 +0100
committerChristian Weiske <cweiske@cweiske.de>2011-03-25 07:44:07 +0100
commite667feb0ca9ff30a063149a2ce20b3398585dd4f (patch)
tree18a17453d4615a5683425f99b5d98d562a927d33 /src
parentd761abb05e28ef4f345acef739e3b371b462f9fe (diff)
downloadsemanticscuttle-e667feb0ca9ff30a063149a2ce20b3398585dd4f.tar.gz
semanticscuttle-e667feb0ca9ff30a063149a2ce20b3398585dd4f.tar.bz2
beginsWith-parameter for getPopulartags, getContactTags and getAdminTags
Diffstat (limited to 'src')
-rw-r--r--src/SemanticScuttle/Service/Bookmark2Tag.php25
1 files changed, 20 insertions, 5 deletions
diff --git a/src/SemanticScuttle/Service/Bookmark2Tag.php b/src/SemanticScuttle/Service/Bookmark2Tag.php
index beb4185..1dc0ffe 100644
--- a/src/SemanticScuttle/Service/Bookmark2Tag.php
+++ b/src/SemanticScuttle/Service/Bookmark2Tag.php
@@ -466,6 +466,7 @@ class SemanticScuttle_Service_Bookmark2Tag extends SemanticScuttle_DbService
* returned.
* @param integer $days Bookmarks have to be changed in the last X days
* if their tags shall count
+ * @param string $beginsWith The tag name shall begin with that string
*
* @return array Array of found tags. Each tag entry is an array with two keys,
* 'tag' (tag name) and 'bCount'.
@@ -473,14 +474,16 @@ class SemanticScuttle_Service_Bookmark2Tag extends SemanticScuttle_DbService
* @see getPopularTags()
*/
public function getAdminTags(
- $limit = 30, $logged_on_user = null, $days = null
+ $limit = 30, $logged_on_user = null, $days = null, $beginsWith = null
) {
// look for admin ids
$userservice = SemanticScuttle_Service_Factory::get('User');
$adminIds = $userservice->getAdminIds();
// ask for their tags
- return $this->getPopularTags($adminIds, $limit, $logged_on_user, $days);
+ return $this->getPopularTags(
+ $adminIds, $limit, $logged_on_user, $days, $beginsWith
+ );
}
@@ -497,6 +500,7 @@ class SemanticScuttle_Service_Bookmark2Tag extends SemanticScuttle_DbService
* people to get the tags from
* @param integer $days Bookmarks have to be changed in the last X days
* if their tags shall count
+ * @param string $beginsWith The tag name shall begin with that string
*
* @return array Array of found tags. Each tag entry is an array with two keys,
* 'tag' (tag name) and 'bCount'.
@@ -504,7 +508,8 @@ class SemanticScuttle_Service_Bookmark2Tag extends SemanticScuttle_DbService
* @see getPopularTags()
*/
public function getContactTags(
- $user, $limit = 30, $logged_on_user = null, $days = null
+ $user, $limit = 30, $logged_on_user = null, $days = null,
+ $beginsWith = null
) {
// look for contact ids
$userservice = SemanticScuttle_Service_Factory::get('User');
@@ -516,7 +521,9 @@ class SemanticScuttle_Service_Bookmark2Tag extends SemanticScuttle_DbService
}
// ask for their tags
- return $this->getPopularTags($contacts, $limit, $logged_on_user, $days);
+ return $this->getPopularTags(
+ $contacts, $limit, $logged_on_user, $days, $beginsWith
+ );
}
@@ -533,6 +540,7 @@ class SemanticScuttle_Service_Bookmark2Tag extends SemanticScuttle_DbService
* returned.
* @param integer $days Bookmarks have to be changed in the last X days
* if their tags shall count
+ * @param string $beginsWith The tag name shall begin with that string
*
* @return array Array of found tags. Each tag entry is an array with two keys,
* 'tag' (tag name) and 'bCount'.
@@ -541,7 +549,8 @@ class SemanticScuttle_Service_Bookmark2Tag extends SemanticScuttle_DbService
* @see getContactTags()
*/
public function getPopularTags(
- $user = null, $limit = 30, $logged_on_user = null, $days = null
+ $user = null, $limit = 30, $logged_on_user = null, $days = null,
+ $beginsWith = null
) {
// Only count the tags that are visible to the current user.
if (($user != $logged_on_user) || is_null($user) || ($user === false)) {
@@ -577,6 +586,12 @@ class SemanticScuttle_Service_Bookmark2Tag extends SemanticScuttle_DbService
. '"';
}
+ if (!is_null($beginsWith)) {
+ $query .= ' AND T.tag LIKE \''
+ . $this->db->sql_escape($beginsWith)
+ . '%\'';
+ }
+
$query .= ' AND LEFT(T.tag, 7) <> "system:"'
. ' GROUP BY T.tag'
. ' ORDER BY bCount DESC, tag';