aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/views/default/profile/profile_ownerblock.php
blob: fd3ff6b114442d4d9fdd160d34a32f101b181bb4 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?php

/**
 * A simple owner block which houses info about the user whose 'stuff' you are looking at
 */

// get the user who owns this profile
if ($vars['entity']) {
	if ($vars['context'] == 'edit') {
		$user = get_entity($vars['entity']->container_guid);
	} else {
		$user = get_entity($vars['entity']->guid);
	}
} else {
	$user = elgg_get_page_owner();
}
if (!$user) {
	// no user so we quit view
	echo sprintf(elgg_echo('viewfailure'), __FILE__);
	return TRUE;
}

$more_info = '';

$location = elgg_view("output/tags",array('value' => $user->location));
$section = $vars['section'];
if ($section == 'details') {
	$icon = elgg_view("profile/icon",array('entity' => $user, 'size' => 'large', 'override' => 'true'));
	$icon_class = "large";
} else {
	$icon = elgg_view("profile/icon",array('entity' => $user, 'size' => 'small'));
	$more_info = "<div class='owner_block_contents clearfix'>";
	$more_info .= "<h3><a href='{$url}'>{$user->name}</a></h3>";
	$more_info .= "<p class='profile_info briefdescription'>{$user->briefdescription}</p>";
	$more_info .= "<p class='profile_info location'>{$location}</p>";
	$more_info .= "</div>";
}
$profile_actions = "";
if (isloggedin() && (get_loggedin_userid() == elgg_get_page_owner_guid())) {
	$profile_actions = "<div class='clearfix profile_actions'>";
	$profile_actions .= "<a href='".elgg_get_site_url()."pg/profile/{$user->username}/edit/details' class='action_button'>". elgg_echo('profile:edit') ."</a>";
	$profile_actions .= "<a href='".elgg_get_site_url()."pg/profile/{$user->username}/edit/icon' class='action_button'>". elgg_echo('profile:editicon') ."</a>";
	$profile_actions .= "</div>";
} else {
	$profile_actions = "<div class='profile_actions'>";
	if (isloggedin()) {
		if (get_loggedin_userid() != $user->getGUID()) {
			if ($user->isFriend()) {
				$url = elgg_get_site_url()."action/friends/remove?friend={$user->getGUID()}";
				$url = elgg_add_action_tokens_to_url($url);
				$profile_actions .= "<a href=\"$url\" class='action_button'>" . elgg_echo('friend:remove') . "</a>";
			} else {
				$url = elgg_get_site_url()."action/friends/add?friend={$user->getGUID()}";
				$url = elgg_add_action_tokens_to_url($url);
				$profile_actions .= "<a href=\"$url\" class='action_button'>" . elgg_echo('friend:add') . "</a>";
			}
		}
	}
	if (is_plugin_enabled('messages') && isloggedin()) {
		$profile_actions .= "<a href=\"".elgg_get_site_url()."mod/messages/send.php?send_to={$user->guid}\" class='action_button'>". elgg_echo('messages:send') ."</a>";
	}
	$profile_actions .= "</div>";
}

$username = $user->username;
$email = $user->email;
$phone = $user->phone;


//if admin display admin links
if (isadminloggedin()) {
	$admin_links = elgg_view('profile/admin_menu');
} else {
	$admin_links = '';
}


//check tools are enabled - hard-coded for phase1
// @todo - provide a view to extend for profile pages ownerblock tool-links
if(is_plugin_enabled('blog')){
	$blog_link = "<li><a href=\"".elgg_get_site_url()."pg/blog/{$username}\">Blog</a></li>";
}else{
	$blog_link = "";
}
if(is_plugin_enabled('bookmarks')){
	$bookmark_link = "<li><a href=\"".elgg_get_site_url()."pg/bookmarks/{$username}\">Bookmarks</a></li>";
}else{
	$bookmark_link = "";
}
if(is_plugin_enabled('document')){
	$docs_link = "<li><a href=\"".elgg_get_site_url()."pg/document/{$username}\">Documents</a></li>";
}else{
	$docs_link = "";
}
if(is_plugin_enabled('feeds')){
	$feeds_link = "<li><a href=\"".elgg_get_site_url()."pg/feeds/{$username}\">Feeds</a></li>";
}else{
	$feeds_link = "";
}
if(is_plugin_enabled('tidypics')){
	$tidypics_link = "<li><a href=\"".elgg_get_site_url()."pg/photos/owned/{$username}\">Photos</a></li>";
}else{
	$tidypics_link = "";
}
if(is_plugin_enabled('videolist')){
	$video_link = "<li><a href=\"".elgg_get_site_url()."pg/videolist/owned/{$username}\">Videos</a></li>";
}else{
	$video_link = "";
}

//contruct the display
$display = <<<EOT

<div id="owner_block">
	<div class="owner_block_icon {$icon_class}">
		{$icon}
	</div>
	{$more_info}
	{$profile_actions}
	<div class="owner_block_links">
		<ul>
		{$blog_link}
		{$bookmark_link}
		{$docs_link}
		{$feeds_link}
		{$tidypics_link}
		{$video_link}
		</ul>
	</div>
	<!-- if admin user -->
	{$admin_links}
</div>

EOT;

echo $display;