richdocuments/templates/documents.php

36 lines
1.4 KiB
PHP
Raw Normal View History

2013-08-28 12:02:27 +02:00
<div id="documents-content">
2013-08-22 16:37:06 +02:00
<ul class="documentslist">
<li class="add-document">
2013-09-13 13:18:45 +03:00
<a class="add svg" target="_blank" href="">
<label><?php p('Add') ?></label>
2013-09-13 13:18:45 +03:00
</a>
2013-09-13 16:47:48 +03:00
<div id="upload" title="<?php p($l->t('Upload') . ' max. '.$_['uploadMaxHumanFilesize']) ?>">
<form data-upload-id="1"
id="data-upload-form"
class="file_upload_form"
action="<?php print_unescaped(OCP\Util::linkTo('files', 'ajax/upload.php')); ?>"
method="post"
enctype="multipart/form-data"
target="file_upload_target_1">
<?php if($_['uploadMaxFilesize'] >= 0):?>
<input type="hidden" name="MAX_FILE_SIZE" id="max_upload"
value="<?php p($_['uploadMaxFilesize']) ?>">
<?php endif;?>
<!-- Send the requesttoken, this is needed for older IE versions
because they don't send the CSRF token via HTTP header in this case -->
<input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>" id="requesttoken">
<input type="hidden" class="max_human_file_size"
value="(max <?php p($_['uploadMaxHumanFilesize']); ?>)">
<input type="hidden" name="dir" value="/" id="dir">
<input type="file" id="file_upload_start" name='files[]'/>
<a href="#" class="upload svg">
<label><?php p('Upload') ?></label></a>
</form>
</div>
</li>
<li class="document template" data-id="" style="display:none;">
<a target="_blank" href=""><label></label></a>
</li>
</ul>
2013-08-17 19:42:50 +03:00
</div>