blob: 811b48af0274af1778e4dcdeb7cd7fd06e3e6080 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
/*
* Template for files admin page
*/
?>
<h1>Admin</h1>
<form>
<input type="checkbox" /> Allow public folders<br>
(if public is enabled)<br>
<input type="radio" name="sharingaim" checked="checked" /> separated from webdav storage<br>
<input type="radio" name="sharingaim" /> let the user decide<br>
<input type="radio" name="sharingaim" /> folder "/public" in webdav storage<br>
(endif)<br>
<input type="checkbox" /> Allow downloading shared files<br>
<input type="checkbox" /> Allow uploading in shared directory<br>
</form>
|