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