2012-08-02 04:39:30 -04:00
|
|
|
<form id="encryption">
|
2012-02-22 16:20:46 -05:00
|
|
|
<fieldset class="personalblock">
|
2012-07-31 10:37:37 -04:00
|
|
|
|
2013-01-22 12:15:03 -05:00
|
|
|
<p>
|
2013-02-27 15:20:37 -05:00
|
|
|
<strong><?php p($l->t( 'Encryption' )); ?></strong>
|
2013-01-22 12:15:03 -05:00
|
|
|
|
2013-02-27 15:20:37 -05:00
|
|
|
<?php p($l->t( "Exclude the following file types from encryption:" )); ?>
|
2013-01-23 14:24:26 -05:00
|
|
|
<br />
|
2013-01-22 12:15:03 -05:00
|
|
|
|
|
|
|
|
<select
|
|
|
|
|
id='encryption_blacklist'
|
2013-02-27 15:20:37 -05:00
|
|
|
title="<?php p($l->t( 'None' ))?>"
|
2013-01-22 12:15:03 -05:00
|
|
|
multiple="multiple">
|
2012-02-22 16:20:46 -05:00
|
|
|
<?php foreach($_["blacklist"] as $type): ?>
|
2013-02-27 15:20:37 -05:00
|
|
|
<option selected="selected" value="<?php p($type); ?>"> <?php p($type); ?> </option>
|
2012-02-22 16:20:46 -05:00
|
|
|
<?php endforeach;?>
|
2013-01-22 12:15:03 -05:00
|
|
|
</select>
|
|
|
|
|
</p>
|
2012-02-22 16:20:46 -05:00
|
|
|
</fieldset>
|
|
|
|
|
</form>
|