aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/templates/settings.php
blob: 55e8cf1542cfb9213d7fc5133fa302e854ac877c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<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>
		<input type='checkbox' id='enable_encryption' <?php if($_['encryption_enabled']) {echo 'checked="checked"';} ?>></input><label for='enable_encryption'><?php echo $l->t('Enable Encryption')?></label>
	</fieldset>
</form>