aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-06-27 19:39:38 +0200
committerChristian Weiske <cweiske@cweiske.de>2011-06-27 19:39:38 +0200
commit6ec3b102aa896df8ddcf6323e0635dc42ac25f98 (patch)
tree5215bb0cc69d68b69767292afc7838217d48b8b5 /src
parentd2aecd8a76a8c1f0d326cae13f158b74b6e60709 (diff)
downloadsemanticscuttle-6ec3b102aa896df8ddcf6323e0635dc42ac25f98.tar.gz
semanticscuttle-6ec3b102aa896df8ddcf6323e0635dc42ac25f98.tar.bz2
make the private tests really test something
Diffstat (limited to 'src')
-rw-r--r--src/SemanticScuttle/Model/Bookmark.php17
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.
*