server/apps/files_encryption/templates/settings.php
Sam Tuke 59ca312263 Work on util: findFiles() and encryptAll(); both close to working
Ecnryption unit tests are failing, recursion in filecache{}
2013-01-23 19:24:26 +00:00

20 lines
523 B
PHP

<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>