settings.php 667 B

12345678910111213
  1. <form id="calendar">
  2. <fieldset class="personalblock">
  3. <strong><?php echo $l->t('Encryption'); ?></strong>
  4. <?php echo $l->t("Exclude the following file types from encryption"); ?>
  5. <select id='encryption_blacklist' title="<?php echo $l->t('None')?>" multiple="multiple">
  6. <?php foreach($_["blacklist"] as $type): ?>
  7. <option selected="selected" value="<?php echo $type;?>"><?php echo $type;?></option>
  8. <?php endforeach;?>
  9. </select>
  10. <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>
  11. </fieldset>
  12. </form>