summaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/templates/settings-personal.php
blob: 47467c52c08a3879064624754a3e271815e63146 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<form id="encryption">
	<fieldset class="personalblock">
		<legend>
			<?php echo $l->t( 'Encryption' ); ?>
		</legend>
		<p>
			<?php echo $l->t( 'File encryption is enabled.' ); ?>
		</p>
		<?php if ( ! empty( $_["blacklist"] ) ): ?>
		<p>
			<?php $l->t( 'The following file types will not be encrypted:' ); ?>
		</p>
		<ul>
			<?php foreach( $_["blacklist"] as $type ): ?>
			<li>
				<?php echo $type; ?>
			</li>
			<?php endforeach; ?>
		</ul>
		<?php endif; ?>
	</fieldset>
</form>