summaryrefslogtreecommitdiffstats
path: root/templates/settings/admin-settings.php
blob: ea33e5345ac6a3adf3656d486ba34b06a59ba574 (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
<?php
/** @var array $_ */
/** @var \OCP\IL10N $l */
script('spreed', ['talk-admin-settings']);
style('spreed', ['settings-admin']);
?>

<div id="admin_settings">
	<div class="videocalls section" id="general_settings">
		<h2><?php p($l->t('General settings')) ?></h2>
	</div>

	<div class="videocalls section" id="allowed_groups">
		<h2><?php p($l->t('Limit to groups')) ?></h2>
		<p class="settings-hint"><?php p($l->t('When at least one group is selected, only people of the listed groups can be part of conversations.')); ?></p>
		<p class="settings-hint"><?php p($l->t('Guests can still join public conversations.')); ?></p>
		<p class="settings-hint"><?php p($l->t('Users that cannot use Talk anymore will still be listed as participants in their previous conversations and also their chat messages will be kept.')); ?></p>
	</div>

	<div class="videocalls section" id="chat_commands">
		<h2><?php p($l->t('Commands')) ?></h2>
		<p class="settings-hint"><?php p($l->t('Specify commands the users can use in chats')); ?></p>

		<div class="commands">
		</div>
	</div>

	<div id="stun_server" class="videocalls section">
		<h2><?php p($l->t('STUN servers')) ?></h2>
		<p class="settings-hint"><?php p($l->t('A STUN server is used to determine the public IP address of participants behind a router.')); ?></p>

		<div class="stun-servers">
		</div>
	</div>

	<div id="turn_server" class="videocalls section">
		<h2><?php p($l->t('TURN server')) ?></h2>
		<p class="settings-hint"><?php p($l->t('The TURN server is used to proxy the traffic from participants behind a firewall.')); ?></p>

		<div class="turn-servers">
		</div>
	</div>

	<div id="signaling_server" class="videocalls section">
		<h2><?php p($l->t('Signaling servers')) ?></h2>
		<p class="settings-hint"><?php p($l->t('An external signaling server can optionally be used for larger installations. Leave empty to use the internal signaling server.')) ?></p>

		<div class="signaling-servers">
		</div>

		<div class="signaling-secret">
			<h4><?php p($l->t('Shared secret')) ?></h4>
			<input type="text" id="signaling_secret"
				   name="signaling_secret" placeholder="<?php p($l->t('Shared secret')) ?>" aria-label="<?php p($l->t('Shared secret')) ?>"/>
		</div>
	</div>

</div>