diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-19 00:03:59 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-19 00:03:59 +0000 |
commit | 1bd7be96c93688cccfb994c4ff3f5bdc5a320a37 (patch) | |
tree | b7af920a405bda479cec3717f70e1500f9f096cf /mod/profile/index.php | |
parent | 0b5a24d7943c6f8bc275d1160f4060b337a3cf7a (diff) | |
download | elgg-1bd7be96c93688cccfb994c4ff3f5bdc5a320a37.tar.gz elgg-1bd7be96c93688cccfb994c4ff3f5bdc5a320a37.tar.bz2 |
more cleanup of the profile plugin from the reorganization
git-svn-id: http://code.elgg.org/elgg/trunk@7674 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/index.php')
-rw-r--r-- | mod/profile/index.php | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/mod/profile/index.php b/mod/profile/index.php deleted file mode 100644 index 7c9c0a3cc..000000000 --- a/mod/profile/index.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php -/** - * Elgg profile index - * - * @package ElggProfile - */ - -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", array('content' => $body)); -echo elgg_view_page($title, $body);
\ No newline at end of file |