blob: f90c873849b125ece0d9fb7f8439beb6046b0a8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
/**
* Page Content header when viewing another members entities
holds the filter menu and any content action buttons
used on bookmarks, blog, file, pages,
**/
$type = $vars['type'];//get the object type
$user = page_owner_entity();
$user_name = elgg_view_title($user->name . "'s " . elgg_echo($type));
?>
<div id="content_header" class="clearfloat">
<div class="content_header_title">
<?php echo $user_name; ?>
</div>
</div>
|