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-01-24 22:37:34 +04:00
|
|
|
<strong><?php echo $l->t( 'Encryption' ); ?></strong>
|
2013-01-22 21:15:03 +04:00
|
|
|
|
2013-01-24 22:37:34 +04:00
|
|
|
<?php echo $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-01-24 22:37:34 +04:00
|
|
|
title="<?php echo $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-01-24 22:37:34 +04:00
|
|
|
<option selected="selected" value="<?php echo $type; ?>"> <?php echo $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>
|