Blame view

sources/apps/files_sharing/templates/settings-admin.php 810 Bytes
6d9380f96   Cédric Dupont   Update sources OC...
1
2
3
4
5
6
7
8
9
10
11
12
13
  <div class="section" id="fileSharingSettings" >
  
  	<h2><?php p($l->t('Remote Shares'));?></h2>
  
  	<input type="checkbox" name="outgoing_server2server_share_enabled" id="outgoingServer2serverShareEnabled"
  		   value="1" <?php if ($_['outgoingServer2serverShareEnabled']) print_unescaped('checked="checked"'); ?> />
  	<label for="outgoingServer2serverShareEnabled"><?php p($l->t('Allow other instances to mount public links shared from this server'));?></label><br/>
  
  	<input type="checkbox" name="incoming_server2server_share_enabled" id="incomingServer2serverShareEnabled"
  		   value="1" <?php if ($_['incomingServer2serverShareEnabled']) print_unescaped('checked="checked"'); ?> />
  	<label for="incomingServer2serverShareEnabled"><?php p($l->t('Allow users to mount public link shares'));?></label><br/>
  
  </div>