Blame view

sources/apps/documents/templates/documents.php 1.82 KB
d1bafeea1   Kload   [fix] Upgrade to ...
1
2
3
4
5
6
  <div id="documents-content">
  	<ul class="documentslist">
  		<li class="add-document">
  			<a class="icon-add add svg" target="_blank" href="">
  				<label><?php p($l->t('New document')) ?></label>
  			</a> 
6d9380f96   Cédric Dupont   Update sources OC...
7
  			<div id="upload" title="<?php p($l->t('Upload (max. %s)', array($_['uploadMaxHumanFilesize']))) ?>">
d1bafeea1   Kload   [fix] Upgrade to ...
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  				<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="<?php p($_['savePath']) ?>" id="dir" />
  					<input type="file" id="file_upload_start" name='files[]' />
  					<a href="#" class="icon-upload upload svg">
  					<label><?php p($l->t('Upload')) ?></label></a>
  				</form>
  			</div>
  		</li>
  		<li class="progress icon-loading"><div><?php p($l->t('Loading documents...')); ?></div></li>
  		<li class="document template" data-id="" style="display:none;">
  			<a target="_blank" href=""><label></label></a>
  		</li>
  	</ul>
  </div>
  <input type="hidden" id="webodf-unstable" value="<?php p($_['useUnstable']) ?>" />
  <input type="hidden" name="allowShareWithLink" id="allowShareWithLink" value="<?php p($_['allowShareWithLink']) ?>" />