summaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/templates/settings.php
blob: 6499d0c8e80657d9a3ec32bbae4758cec9efd453 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<form id="encryption">
	<fieldset class="personalblock">
		
		<p>
			<strong><?php p($l->t( 'Encryption' )); ?></strong>
			<br />
			
			<?php p($l->t( "Exclude the following file types from encryption:" )); ?>
			<br />
			
			<select 
			id='encryption_blacklist' 
			title="<?php p($l->t( 'None' ))?>" 
			multiple="multiple">
			<?php foreach($_["blacklist"] as $type): ?>
				<option selected="selected" value="<?php p($type); ?>"> <?php p($type); ?> </option>
			<?php endforeach;?>
			</select>
		</p>
		<p>
			<?php p($l->t( "Enable encryption passwords recovery account (allow sharing to recovery account):" )); ?>
			<br />
			<input 
			type='radio'
			name='adminEnableRecovery'
			value='1'
			<?php echo ( $_["recoveryEnabled"] == 1 ? 'checked="checked"' : '' ); ?> />
			<?php p($l->t( "Enabled" )); ?>
			<br />
			
			<input 
			type='radio'
			name='adminEnableRecovery'
			value='0'
			<?php echo ( $_["recoveryEnabled"] == 0 ? 'checked="checked"' : '' ); ?> />
			<?php p($l->t( "Disabled" )); ?>
		</p>
	</fieldset>
</form>