diff options
Diffstat (limited to 'pages/avatar/edit.php')
-rw-r--r-- | pages/avatar/edit.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/pages/avatar/edit.php b/pages/avatar/edit.php new file mode 100644 index 000000000..c71633b8b --- /dev/null +++ b/pages/avatar/edit.php @@ -0,0 +1,27 @@ +<?php +/** + * Upload and crop an avatar page + */ + +// Only logged in users +gatekeeper(); + +elgg_set_context('profile_edit'); + +$title = elgg_echo('avatar:edit'); + +$entity = elgg_get_page_owner_entity(); +$content = elgg_view('core/avatar/upload', array('entity' => $entity)); + +// only offer the crop view if an avatar has been uploaded +if (isset($entity->icontime)) { + $content .= elgg_view('core/avatar/crop', array('entity' => $entity)); +} + +$params = array( + 'content' => $content, + 'title' => $title, +); +$body = elgg_view_layout('one_sidebar', $params); + +echo elgg_view_page($title, $body); |