aboutsummaryrefslogtreecommitdiff
path: root/mod/bookmarks/pages/view.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-03 03:25:25 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-03 03:25:25 +0000
commitd4e4268d11612408e4989a5c57f69fcb2febe8aa (patch)
tree2b3b041a5f4e17bea674a44f07c3df5c7f3811dd /mod/bookmarks/pages/view.php
parentb232f52a5273a44e28de239cbacc1e4e4b8cc8b3 (diff)
downloadelgg-d4e4268d11612408e4989a5c57f69fcb2febe8aa.tar.gz
elgg-d4e4268d11612408e4989a5c57f69fcb2febe8aa.tar.bz2
Refs #2680: First pass at porting the 1.7 bookmarks to 1.8. Functional, but code is still messy.
git-svn-id: http://code.elgg.org/elgg/trunk@7998 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/bookmarks/pages/view.php')
-rw-r--r--mod/bookmarks/pages/view.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/mod/bookmarks/pages/view.php b/mod/bookmarks/pages/view.php
new file mode 100644
index 000000000..6b4b839b1
--- /dev/null
+++ b/mod/bookmarks/pages/view.php
@@ -0,0 +1,36 @@
+<?php
+/**
+ * View a bookmark
+ *
+ * @package ElggBookmarks
+ */
+
+$bookmark = get_entity(get_input('guid'));
+
+elgg_set_page_owner_guid($bookmark->getContainerGUID());
+$owner = elgg_get_page_owner_entity();
+
+elgg_push_breadcrumb(elgg_echo('bookmarks'), 'pg/bookmarks/all');
+
+$crumbs_title = elgg_echo('blog:owned_blogs', array($owner->name));
+if (elgg_instanceof($owner, 'group')) {
+ elgg_push_breadcrumb($crumbs_title, "pg/bookmarks/group/$owner->guid/owner");
+} else {
+ elgg_push_breadcrumb($crumbs_title, "pg/bookmarks/owner/$owner->username");
+}
+
+$title = $bookmark->title;
+
+elgg_push_breadcrumb($title);
+
+$content = elgg_view_entity($bookmark, true);
+$content .= elgg_view_comments($bookmark);
+
+$body = elgg_view_layout('content', array(
+ 'content' => $content,
+ 'title' => $title,
+ 'filter' => '',
+ 'header' => '',
+));
+
+echo elgg_view_page($title, $body);