From: cash Date: Wed, 29 Dec 2010 13:37:26 +0000 (+0000) Subject: forgot to add this file for the fie plugin X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=59cb58582f64b4f239da53ede602ad2c82f02077;p=lorea%2Felgg.git forgot to add this file for the fie plugin git-svn-id: http://code.elgg.org/elgg/trunk@7739 36083f99-b078-4883-b0ff-0f9b5a30f544 --- diff --git a/mod/file/view.php b/mod/file/view.php new file mode 100644 index 000000000..db123d3ad --- /dev/null +++ b/mod/file/view.php @@ -0,0 +1,36 @@ +getContainerGUID()); +$owner = elgg_get_page_owner(); + +elgg_push_breadcrumb(elgg_echo('file'), 'pg/file/all'); + +$crumbs_title = elgg_echo('blog:owned_blogs', array($owner->name)); +if (elgg_instanceof($owner, 'group')) { + elgg_push_breadcrumb($crumbs_title, "pg/file/group/$owner->guid/owner"); +} else { + elgg_push_breadcrumb($crumbs_title, "pg/file/owner/$owner->username"); +} + +$title = $file->title; + +elgg_push_breadcrumb($title); + +$content = elgg_view_entity($file, true); +//$content .= elgg_view_comments($file); + +$body = elgg_view_layout('content', array( + 'content' => $content, + 'title' => $title, + 'filter' => '', + 'header' => '', +)); + +echo elgg_view_page($title, $body);