diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2013-11-22 13:24:11 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2013-11-22 13:25:20 +0100 |
commit | 8ccac86c9893fe0af1715288ce29d85091bca9aa (patch) | |
tree | 8c704a9156ad7485a187a5ec6d14f19c112870cc /settings/templates | |
parent | 54f0deff2ae60b2914f2cd1f20e7bcb23726edac (diff) | |
download | nextcloud-server-8ccac86c9893fe0af1715288ce29d85091bca9aa.tar.gz nextcloud-server-8ccac86c9893fe0af1715288ce29d85091bca9aa.zip |
Enable user backends to provide avatar images
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/personal.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 9d21e18e73c..27a581af9c5 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -87,11 +87,15 @@ if($_['passwordChangeSupported']) { <div id="displayavatar"> <div class="avatardiv"></div><br> <div class="warning hidden"></div> + <?php if ($_['avatarChangeSupported']): ?> <div class="inlineblock button" id="uploadavatarbutton"><?php p($l->t('Upload new')); ?></div> <input type="file" class="hidden" name="files[]" id="uploadavatar"> <div class="inlineblock button" id="selectavatar"><?php p($l->t('Select new from Files')); ?></div> <div class="inlineblock button" id="removeavatar"><?php p($l->t('Remove image')); ?></div><br> <?php p($l->t('Either png or jpg. Ideally square but you will be able to crop it.')); ?> + <?php else: ?> + <?php p($l->t('Your avatar is provided by your original account.')); ?> + <?php endif; ?> </div> <div id="cropper" class="hidden"> <div class="inlineblock button" id="abortcropperbutton"><?php p($l->t('Abort')); ?></div> |