You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/apps/files_encryption/templates/settings.php

20 lines
531 B

<form id="encryption">
<fieldset class="personalblock">
<p>
<strong><?php echo $l->t( 'Encryption' ); ?></strong>
<?php echo $l->t( "Exclude the following file types from encryption:" ); ?>
<br />
<select
id='encryption_blacklist'
title="<?php echo $l->t( 'None' )?>"
multiple="multiple">
<?php foreach($_["blacklist"] as $type): ?>
<option selected="selected" value="<?php echo $type; ?>"> <?php echo $type; ?> </option>
<?php endforeach;?>
</select>
</p>
</fieldset>
</form>