diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-06-27 19:39:38 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-06-27 19:39:38 +0200 |
commit | 6ec3b102aa896df8ddcf6323e0635dc42ac25f98 (patch) | |
tree | 5215bb0cc69d68b69767292afc7838217d48b8b5 /src/SemanticScuttle | |
parent | d2aecd8a76a8c1f0d326cae13f158b74b6e60709 (diff) | |
download | semanticscuttle-6ec3b102aa896df8ddcf6323e0635dc42ac25f98.tar.gz semanticscuttle-6ec3b102aa896df8ddcf6323e0635dc42ac25f98.tar.bz2 |
make the private tests really test something
Diffstat (limited to 'src/SemanticScuttle')
-rw-r--r-- | src/SemanticScuttle/Model/Bookmark.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/SemanticScuttle/Model/Bookmark.php b/src/SemanticScuttle/Model/Bookmark.php index 8bda0b3..1330642 100644 --- a/src/SemanticScuttle/Model/Bookmark.php +++ b/src/SemanticScuttle/Model/Bookmark.php @@ -24,6 +24,23 @@ class SemanticScuttle_Model_Bookmark { /** + * Status "public" / visible for all + */ + const SPUBLIC = 0; + + /** + * Status "shared" / visible for people on your watchlist + */ + const SWATCHLIST = 1; + + /** + * Status "private" / visible for yourself only + */ + const SPRIVATE = 2; + + + + /** * Checks if the given URL is valid and may be used with this * SemanticScuttle installation. * |