blob: 3b3a882e633990ba3d2d53b56963f74b91d360a2 (
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
|
<?php
/**
* Elgg profile index
*
* @package ElggProfile
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd <info@elgg.com>
* @copyright Curverider Ltd 2008-2010
* @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
$username = get_input('username');
$option = get_input('option', 'activity');
$body = '';
// Try and get the user from the username and set the page body accordingly
if ($user = get_user_by_username($username)) {
if ($user->isBanned() && !isadminloggedin()) {
forward(); exit;
}
$body = elgg_view('profile/profile_navigation', array("option" => $option,"entity" => $user));
switch($option){
case 'activity':
$body .= elgg_view('profile/profile_contents/details', array("entity" => $user));
break;
case 'friends':
$body .= elgg_view('profile/profile_contents/friends', array("entity" => $user));
break;
case 'groups':
$body .= elgg_view('profile/profile_contents/groups', array("entity" => $user));
break;
case 'extend':
$body .= elgg_view('profile/profile_contents/extend', array("entity" => $user));
break;
case 'twitter':
$body .= elgg_view('profile/profile_contents/twitter', array("entity" => $user));
break;
case 'default':
$body .= elgg_view('profile/profile_contents/details', array("entity" => $user));
break;
}
$title = $user->name;
} else {
$body = elgg_echo("profile:notfound");
$title = elgg_echo("profile");
}
$body = elgg_view_layout("one_column", $body);
page_draw($title, $body);
|