diff options
Diffstat (limited to 'views/default/photos/group_module.php')
-rw-r--r-- | views/default/photos/group_module.php | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/views/default/photos/group_module.php b/views/default/photos/group_module.php deleted file mode 100644 index de7a451c4..000000000 --- a/views/default/photos/group_module.php +++ /dev/null @@ -1,45 +0,0 @@ -<?php -/** - * Group blog module - */ - -$group = $vars['entity']; - -if ($group->photos_enable == "no") { - return true; -} - -$all_link = elgg_view('output/url', array( - 'href' => "photos/group/$group->guid/all", - 'text' => elgg_echo('link:view:all'), - 'is_trusted' => true, -)); - -elgg_push_context('widgets'); -$options = array( - 'type' => 'object', - 'subtype' => 'album', - 'container_guid' => elgg_get_page_owner_guid(), - 'limit' => 6, - 'full_view' => false, - 'pagination' => false, -); -$content = elgg_list_entities($options); -elgg_pop_context(); - -if (!$content) { - $content = '<p>' . elgg_echo('tidypics:none') . '</p>'; -} - -$new_link = elgg_view('output/url', array( - 'href' => "photos/add/$group->guid", - 'text' => elgg_echo('photos:add'), - 'is_trusted' => true, -)); - -echo elgg_view('groups/profile/module', array( - 'title' => elgg_echo('photos:group'), - 'content' => $content, - 'all_link' => $all_link, - 'add_link' => $new_link, -)); |