blob: c71633b8bec44cce383d33cd74e85a2b31c18603 (
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
|
<?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);
|