nextcloud/apps/files_encryption/templates/settings-personal.php

21 lines
481 B
PHP
Raw Normal View History

2012-08-02 12:39:30 +04:00
<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>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; ?>
2012-08-02 12:39:30 +04:00
</fieldset>
</form>