aboutsummaryrefslogtreecommitdiff
path: root/views/default/videolist/group_video_header.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/videolist/group_video_header.php')
-rw-r--r--views/default/videolist/group_video_header.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/views/default/videolist/group_video_header.php b/views/default/videolist/group_video_header.php
deleted file mode 100644
index e6d13bca3..000000000
--- a/views/default/videolist/group_video_header.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-/**
-* Page header view, when visiting a group's videos
-**/
-
-$user = page_owner_entity();
-$user_name = elgg_view_title($user->name . "'s " . elgg_echo('videos'));
-$url = elgg_get_site_url() . "videolist/browse/". $user->username . "/";
-//if the user is a memebr of the group, show find button
-if($user->isMember(get_loggedin_user()))
- $upload_link = "<a href=\"{$url}\" class='action_button'>" . elgg_echo('videolist:browsemenu') . '</a>';
-else
- $upload_link = '';
-?>
-<div id="content_header" class="clearfloat">
- <div class="content_header_title">
- <?php echo $user_name; ?>
- </div>
- <div class="content_header_options">
- <?php echo $upload_link; ?>
- </div>
-</div>