Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Tuke <samtuke@owncloud.com>2013-02-05 21:06:15 +0400
committerSam Tuke <samtuke@owncloud.com>2013-02-05 21:06:15 +0400
commitb84e83261ec8caf2ce128017d703e4139e3f6211 (patch)
tree2e79b558d897ac2c9afeb5b8f9fadb2b7155266c /apps/files_encryption/templates
parent680c5b3dad9f83b912da3a0629060525d08c2165 (diff)
Added notice to personal settings indicating what filetypes are not encrypted
Diffstat (limited to 'apps/files_encryption/templates')
-rw-r--r--apps/files_encryption/templates/settings-personal.php42
1 files changed, 14 insertions, 28 deletions
diff --git a/apps/files_encryption/templates/settings-personal.php b/apps/files_encryption/templates/settings-personal.php
index ad34a0d78b9..5931a4cdeb0 100644
--- a/apps/files_encryption/templates/settings-personal.php
+++ b/apps/files_encryption/templates/settings-personal.php
@@ -1,34 +1,20 @@
<form id="encryption">
<fieldset class="personalblock">
- <strong><?php echo $l->t( 'Choose encryption mode:' ); ?></strong>
+ <legend>
+ <?php echo $l->t( 'Encryption' ); ?>
+ </legend>
<p>
- <input
- type="hidden"
- name="prev_encryption_mode"
- id="prev_encryption_mode"
- value="<?php echo $_['encryption_mode']; ?>"
- >
-
- <input
- type="radio"
- name="encryption_mode"
- value="server"
- id='server_encryption'
- style="width:20px;" <?php if ( $_['encryption_mode'] == 'server' ) echo "checked='checked'" ?>
- />
- <?php echo $l->t( 'Server side encryption (allows you to access your files from the web interface)' ); ?>
- <br />
-
- <input
- type="radio"
- name="encryption_mode"
- value="none"
- id='none_encryption'
- style="width:20px;"
- <?php if ( $_['encryption_mode'] == 'none' ) echo "checked='checked'" ?>
- />
- <?php echo $l->t( 'None (no encryption at all)' ); ?>
- <br/>
+ <?php echo $l->t( 'File encryption is enabled.' ); ?>
</p>
+ <?php if ( ! empty( $_["blacklist"] ) ): ?>
+ <p>The following file types will not be encrypted:</p>
+ <ul>
+ <?php foreach( $_["blacklist"] as $type ): ?>
+ <li>
+ <?php echo $type; ?>
+ </li>
+ <?php endforeach; ?>
+ </p>
+ <?php endif; ?>
</fieldset>
</form>