Trean_Tagger::listBookmarkTags PHP Method

listBookmarkTags() public method

Returns tags on bookmarks belonging to the current user.
public listBookmarkTags ( ) : A
return A tag_id => tag_name hash
    public function listBookmarkTags()
    {
        try {
            return $GLOBALS['injector']->getInstance('Content_Tagger')->getTags(array('typeId' => $this->_type_ids['bookmark'], 'userId' => $GLOBALS['registry']->getAuth()));
        } catch (Content_Exception $e) {
            throw new Trean_Exception($e);
        }
    }