aboutsummaryrefslogtreecommitdiff
path: root/views/default/page_elements/owner_block.php
blob: 311d277670d27d239018abcb6d47be5af717af65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
 * Elgg owner block
 * Displays page ownership information
 *
 * @package Elgg
 * @subpackage Core
 * @author Curverider Ltd
 * @link http://elgg.org/
 *
 */

$contents = "";

// Are there feeds to display?
global $autofeed;
if (isset($autofeed) && $autofeed == true) {
	$url = $url2 = full_url();
	if (substr_count($url,'?')) {
		$url .= "&view=rss";
	} else {
		$url .= "?view=rss";
	}
	$label = elgg_echo('feed:rss');
	$contents .= <<<END
	<div class="rss_link clearfloat"><a href="{$url}" rel="nofollow" title="{$label}">{$label}</a></div>
END;
}

if(is_plugin_enabled('profile')) {
	// Is there a page owner?
	$owner = page_owner_entity();
	if ($owner instanceof ElggGroup ||
		($owner instanceof ElggUser && $owner->getGUID() != get_loggedin_userid())
	) {
		$icon = elgg_view('profile/icon', array('entity' => $owner, 'size' => 'tiny'));
		$owner_url = $owner->getURL();
		$display = "<div class=\"owner_block_icon\">$icon</div>";
		$display .= '<div class="owner_block_contents clearfloat">';
		$display .= "<h3><a href=\"$owner_url\">{$owner->name}</a></h3>";

		if ($owner->briefdescription) {
			$display .= "<p class=\"profile_info briefdescription\">{$owner->briefdescription}</p>";
		}
		
		$location = elgg_view('output/tags', array('value' => $owner->location));
		$display .= "<p class=\"profile_info location\">$location</p>";

		$display .= elgg_view('owner_block/profile_extend');
		
		// close owner_block_content
		$display .= '</div>';

		$contents .= "<div id=\"owner_block\" class=\"radius8\">$display</div>";
	}
}

$contents .= elgg_view('owner_block/extend');


// Have we been asked to inject any content? If so, display it
if (isset($vars['content']))
	$contents .= $vars['content'];

// Initialise the current tool/page submenu (plugins can add to the submenu)
$submenu = elgg_get_submenu();

if (!empty($submenu))
	$contents .= $submenu;

if (!empty($contents)) {
	echo $contents;
}