nextcloud/apps/files/templates/admin.php

29 lines
1.5 KiB
PHP
Raw Normal View History

2012-11-04 14:10:46 +04:00
<?php OCP\Util::addscript('files', 'admin'); ?>
2011-07-09 23:44:50 +04:00
<form name="filesForm" action='#' method='post'>
2012-03-16 19:00:12 +04:00
<fieldset class="personalblock">
<legend><strong><?php echo $l->t('File handling');?></strong></legend>
<?php if($_['uploadChangable']):?>
2012-11-29 21:30:02 +04:00
<label for="maxUploadSize"><?php echo $l->t( 'Maximum upload size' ); ?> </label>
<input name='maxUploadSize' id="maxUploadSize" value='<?php echo $_['uploadMaxFilesize'] ?>'/>
<?php if($_['displayMaxPossibleUploadSize']):?>
(<?php echo $l->t('max. possible: '); echo $_['maxPossibleUploadSize'] ?>)
<?php endif;?>
<br/>
<?php endif;?>
2012-11-29 21:30:02 +04:00
<input type="checkbox" name="allowZipDownload" id="allowZipDownload" value="1"
title="<?php echo $l->t( 'Needed for multi-file and folder downloads.' ); ?>"
<?php if ($_['allowZipDownload']): ?> checked="checked"<?php endif; ?> />
<label for="allowZipDownload"><?php echo $l->t( 'Enable ZIP-download' ); ?></label><br/>
2012-11-29 21:30:02 +04:00
<input name="maxZipInputSize" id="maxZipInputSize" style="width:180px;" value='<?php echo $_['maxZipInputSize'] ?>'
title="<?php echo $l->t( '0 is unlimited' ); ?>"
<?php if (!$_['allowZipDownload']): ?> disabled="disabled"<?php endif; ?> /><br />
<em><?php echo $l->t( 'Maximum input size for ZIP files' ); ?> </em><br />
2012-11-02 02:52:04 +04:00
<input type="hidden" value="<?php echo $_['requesttoken']; ?>" name="requesttoken" />
2012-11-29 21:30:02 +04:00
<input type="submit" name="submitFilesAdminSettings" id="submitFilesAdminSettings"
value="<?php echo $l->t( 'Save' ); ?>"/>
2012-03-16 19:00:12 +04:00
</fieldset>
</form>