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/edit.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/edit.php')
-rw-r--r-- | mod/profile/edit.php | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/mod/profile/edit.php b/mod/profile/edit.php deleted file mode 100644 index bef1cc094..000000000 --- a/mod/profile/edit.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -/** - * Elgg profile editor - * - * @package ElggProfile - */ - -// Get the Elgg engine -require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); - -// If we're not logged on, forward the user elsewhere -if (!isloggedin()) { - forward(); -} - -// Get owner of profile - set in page handler -$user = elgg_get_page_owner(); -if (!$user) { - register_error(elgg_echo("profile:notfound")); - forward(); -} - -// check if logged in user can edit this profile -if (!$user->canEdit()) { - register_error(elgg_echo("profile:noaccess")); - forward(); -} - -// Get edit form -$area1 = elgg_view_title(elgg_echo('profile:edit')); -$area1 .= elgg_view("profile/edit",array('entity' => $user)); - -elgg_set_context('profile_edit'); - -$body = elgg_view_layout("one_column_with_sidebar", array('content' => $area1)); - -echo elgg_view_page(elgg_echo("profile:edit"), $body); |