diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-18 21:25:54 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-18 21:25:54 +0000 |
commit | 9bc9a3e7590ba15039b019da22c60bdd9d9868e0 (patch) | |
tree | 405dd4a5fc8cfd5a9861507200b4c3982547b347 /views/default/core/avatar/crop.php | |
parent | 9ac841f26e05af3515643e44eb5fde30bcfb1b75 (diff) | |
download | elgg-9bc9a3e7590ba15039b019da22c60bdd9d9868e0.tar.gz elgg-9bc9a3e7590ba15039b019da22c60bdd9d9868e0.tar.bz2 |
pulling the avatar code out of the profile plugin - just some minor icon related code left
git-svn-id: http://code.elgg.org/elgg/trunk@7671 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/core/avatar/crop.php')
-rw-r--r-- | views/default/core/avatar/crop.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/views/default/core/avatar/crop.php b/views/default/core/avatar/crop.php new file mode 100644 index 000000000..499e2af4e --- /dev/null +++ b/views/default/core/avatar/crop.php @@ -0,0 +1,16 @@ +<?php +/** + * Avatar cropping view + * + * @uses vars['entity'] + */ + +?> +<div id="avatar-croppingtool"> + <label><?php echo elgg_echo('avatar:crop:title'); ?></label> + <br /> + <p> + <?php echo elgg_echo("avatar:create:instructions"); ?> + </p> + <?php echo elgg_view_form('avatar/crop', array(), $vars); ?> +</div> |