summaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/templates/settings.php
blob: 544ec793f375890e1781342b4bfac9d6d3e0263b (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<form id="encryption">
	<fieldset class="personalblock">
		
		<strong>
			<?php echo $l->t('Choose encryption mode:'); ?>
		</strong>
		
		<p>
			<i>
				<?php echo $l->t('Important: Once you selected an encryption mode there is no way to change it back'); ?>
			</i>
		</p>
		
		<p>
			<input 
			type="radio" 
			name="encryption_mode" 
			id="client_encryption" 
			value="client" 
			style="width:20px;" 
			<?php if ($_['encryption_mode'] == 'client') echo "checked='checked'"; if ($_['encryption_mode'] != 'none') echo "DISABLED"?> 
			/> 
			
			<?php echo $l->t("Client side encryption (most secure but makes it impossible to access your data from the web interface)"); ?>
			<br />
			
			<input
			type="radio" 
			name="encryption_mode" 
			id="server_encryption" 
			value="server" 
			style="width:20px;" 
			<?php if ($_['encryption_mode'] == 'server') echo "checked='checked'"; if ($_['encryption_mode'] != 'none') echo "DISABLED"?> 
			/> 
			
			<?php echo $l->t('Server side encryption (allows you to access your files from the web interface and the desktop client)'); ?>
			<br />
			
			<input
			type="radio" 
			name="encryption_mode" 
			id="user_encryption" 
			value="user" 
			style="width:20px;" 
			<?php if ($_['encryption_mode'] == 'user') echo "checked='checked'"; if ($_['encryption_mode'] != 'none') echo "DISABLED"?> 
			/>
			
			<?php echo $l->t('User specific (let the user decide)'); ?>
			<br/>
			
			<input
			type="radio" 
			name="encryption_mode" 
			id="none_encryption" 
			value="none" 
			style="width:20px;" 
			<?php if ($_['encryption_mode'] == 'none') echo "checked='checked'"; if ($_['encryption_mode'] != 'none') echo "DISABLED"?>
			/> 
			
			<?php echo $l->t('None (no encryption at all)'); ?>
			<br/>
			
		</p>
		<p>
			<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>
		</p>
	</fieldset>
</form>