Welcome to mirror list, hosted at ThFree Co, Russian Federation.

settings-admin.php « templates « federatedfilesharing « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 093679bc16cbbb63231c253881b44313fbe2c38b (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
<?php
/** @var \OCP\IL10N $l */
/** @var array $_ */
script('federatedfilesharing', 'settings-admin');
style('federatedfilesharing', 'settings-admin');
?>

<?php if ($_['internalOnly'] === false): ?>

<div id="fileSharingSettings" class="section">
	<h2>
		<?php p($l->t('Federated Cloud Sharing'));?>
	</h2>
	<a target="_blank" rel="noreferrer noopener" class="icon-info svg"
	   title="<?php p($l->t('Open documentation'));?>"
	   href="<?php p(link_to_docs('admin-sharing-federated')); ?>"></a>

	<p class="settings-hint"><?php p($l->t('Adjust how people can share between servers. This includes shares between users on this server as well if they are using federated sharing.')); ?></p>

	<p>
		<input type="checkbox" name="outgoing_server2server_share_enabled" id="outgoingServer2serverShareEnabled" class="checkbox"
			   value="1" <?php if ($_['outgoingServer2serverShareEnabled']) {
	print_unescaped('checked="checked"');
} ?> />
		<label for="outgoingServer2serverShareEnabled">
			<?php p($l->t('Allow users on this server to send shares to other servers (this option also allows WebDAV access to public shares)'));?>
		</label>
	</p>
	<p>
		<input type="checkbox" name="incoming_server2server_share_enabled" id="incomingServer2serverShareEnabled" class="checkbox"
			   value="1" <?php if ($_['incomingServer2serverShareEnabled']) {
	print_unescaped('checked="checked"');
} ?> />
		<label for="incomingServer2serverShareEnabled">
			<?php p($l->t('Allow users on this server to receive shares from other servers'));?>
		</label><br/>
	</p>
	<?php if ($_['federatedGroupSharingSupported']): ?>
	<p>
		<input type="checkbox" name="outgoing_server2server_group_share_enabled" id="outgoingServer2serverGroupShareEnabled" class="checkbox"
			   value="1" <?php if ($_['outgoingServer2serverGroupShareEnabled']) {
	print_unescaped('checked="checked"');
} ?> />
		<label for="outgoingServer2serverGroupShareEnabled">
			<?php p($l->t('Allow users on this server to send shares to groups on other servers'));?>
		</label>
	</p>
	<p>
		<input type="checkbox" name="incoming_server2server_group_share_enabled" id="incomingServer2serverGroupShareEnabled" class="checkbox"
			   value="1" <?php if ($_['incomingServer2serverGroupShareEnabled']) {
	print_unescaped('checked="checked"');
} ?> />
		<label for="incomingServer2serverGroupShareEnabled">
			<?php p($l->t('Allow users on this server to receive group shares from other servers'));?>
		</label><br/>
	</p>
	<?php endif; ?>
	<p>
		<input type="checkbox" name="lookupServerEnabled" id="lookupServerEnabled" class="checkbox"
			   value="1" <?php if ($_['lookupServerEnabled']) {
	print_unescaped('checked="checked"');
} ?> />
		<label for="lookupServerEnabled">
			<?php p($l->t('Search global and public address book for users'));?>
		</label><br/>
	</p>
	<p>
		<input type="checkbox" name="lookupServerUploadEnabled" id="lookupServerUploadEnabled" class="checkbox"
			   value="1" <?php if ($_['lookupServerUploadEnabled']) {
	print_unescaped('checked="checked"');
} ?> />
		<label for="lookupServerUploadEnabled">
			<?php p($l->t('Allow users to publish their data to a global and public address book'));?>
		</label><br/>
	</p>

</div>

<?php endif; ?>