2012-02-23 01:20:46 +04:00
|
|
|
<form id="calendar">
|
|
|
|
<fieldset class="personalblock">
|
|
|
|
<strong><?php echo $l->t('Encryption'); ?></strong>
|
|
|
|
<?php echo $l->t("Exclude the following file types from encryption"); ?>
|
|
|
|
<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>
|
2012-04-19 18:36:07 +04:00
|
|
|
<input type='checkbox' id='enbale_encryption' <?php if($_['encryption_enabled']){echo 'checked="checked"';} ?>></input><label for='enbale_encryption'><?php echo $l->t('Enable Encryption')?></label>
|
2012-02-23 01:20:46 +04:00
|
|
|
</fieldset>
|
|
|
|
</form>
|