summaryrefslogtreecommitdiffstats
path: root/apps/files/templates/admin.php
blob: 5f7d3261d6c1a5dd2e6b16f347a2493f3e072a06 (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
<?php OCP\Util::addscript('files', 'admin'); ?>

<form name="filesForm" class="section" action="#" method="post">
	<h2><?php p($l->t('File handling')); ?></h2>
	<?php if($_['uploadChangable']):?>
		<label for="maxUploadSize"><?php p($l->t( 'Maximum upload size' )); ?> </label>
		<input type="text" name='maxUploadSize' id="maxUploadSize" value='<?php p($_['uploadMaxFilesize']) ?>'/>
		<?php if($_['displayMaxPossibleUploadSize']):?>
			(<?php p($l->t('max. possible: ')); p($_['maxPossibleUploadSize']) ?>)
		<?php endif;?>
		<br/>
	<?php endif;?>
	<input type="checkbox" name="allowZipDownload" id="allowZipDownload" value="1"
		   title="<?php p($l->t( 'Needed for multi-file and folder downloads.' )); ?>"
		   <?php if ($_['allowZipDownload']): ?> checked="checked"<?php endif; ?> />
	<label for="allowZipDownload"><?php p($l->t( 'Enable ZIP-download' )); ?></label><br/>

	<input type="text" name="maxZipInputSize" id="maxZipInputSize" style="width:180px;" value='<?php p($_['maxZipInputSize']) ?>'
		   title="<?php p($l->t( '0 is unlimited' )); ?>"
		   <?php if (!$_['allowZipDownload']): ?> disabled="disabled"<?php endif; ?> /><br />
	<em><?php p($l->t( 'Maximum input size for ZIP files' )); ?> </em><br />

	<input type="hidden" value="<?php p($_['requesttoken']); ?>" name="requesttoken" />
	<input type="submit" name="submitFilesAdminSettings" id="submitFilesAdminSettings"
		   value="<?php p($l->t( 'Save' )); ?>"/>
</form>