Blame view
sources/apps/files/templates/index.php
5.7 KB
|
03e52840d
|
1 2 |
<div id="controls"> <?php print_unescaped($_['breadcrumb']); ?> |
|
31b7f2792
|
3 |
<div class="actions creatable <?php if (!$_['isCreatable']):?>hidden<?php endif; ?>"> |
|
a293d369c
|
4 |
<?php if(!isset($_['dirToken'])):?> |
|
03e52840d
|
5 6 7 8 |
<div id="new" class="button">
<a><?php p($l->t('New'));?></a>
<ul>
<li style="background-image:url('<?php p(OCP\mimetype_icon('text/plain')) ?>')"
|
|
31b7f2792
|
9 |
data-type='file' data-newname='<?php p($l->t('New text file')) ?>.txt'><p><?php p($l->t('Text file'));?></p></li>
|
|
03e52840d
|
10 |
<li style="background-image:url('<?php p(OCP\mimetype_icon('dir')) ?>')"
|
|
31b7f2792
|
11 12 |
data-type='folder' data-newname='<?php p($l->t('New folder')) ?>'><p><?php p($l->t('Folder'));?></p></li>
<li style="background-image:url('<?php p(OCP\image_path('core', 'places/link.svg')) ?>')"
|
|
03e52840d
|
13 14 15 |
data-type='web'><p><?php p($l->t('From link'));?></p></li>
</ul>
</div>
|
|
a293d369c
|
16 |
<?php endif;?> |
|
03e52840d
|
17 18 |
<div id="upload" class="button"
title="<?php p($l->t('Upload') . ' max. '.$_['uploadMaxHumanFilesize']) ?>">
|
|
31b7f2792
|
19 |
<?php if($_['uploadMaxFilesize'] >= 0):?> |
|
03e52840d
|
20 21 |
<input type="hidden" name="MAX_FILE_SIZE" id="max_upload" value="<?php p($_['uploadMaxFilesize']) ?>"> |
|
31b7f2792
|
22 |
<?php endif;?> |
|
a293d369c
|
23 24 25 26 |
<?php if(isset($_['dirToken'])):?> <input type="hidden" id="publicUploadRequestToken" name="requesttoken" value="<?php p($_['requesttoken']) ?>" /> <input type="hidden" id="dirToken" name="dirToken" value="<?php p($_['dirToken']) ?>" /> <?php endif;?> |
|
03e52840d
|
27 28 29 |
<input type="hidden" class="max_human_file_size" value="(max <?php p($_['uploadMaxHumanFilesize']); ?>)"> <input type="hidden" name="dir" value="<?php p($_['dir']) ?>" id="dir"> |
|
31b7f2792
|
30 31 |
<input type="file" id="file_upload_start" name='files[]'
data-url="<?php print_unescaped(OCP\Util::linkTo('files', 'ajax/upload.php')); ?>" />
|
|
a293d369c
|
32 |
<a href="#" class="svg icon icon-upload"></a> |
|
03e52840d
|
33 |
</div> |
|
31b7f2792
|
34 |
<?php if ($_['trash']): ?> |
|
a293d369c
|
35 |
<input id="trash" type="button" value="<?php p($l->t('Deleted files'));?>" class="button" <?php $_['trashEmpty'] ? p('disabled') : '' ?> />
|
|
03e52840d
|
36 37 38 39 40 41 42 43 44 |
<?php endif; ?>
<div id="uploadprogresswrapper">
<div id="uploadprogressbar"></div>
<input type="button" class="stop" style="display:none"
value="<?php p($l->t('Cancel upload'));?>"
/>
</div>
</div>
<div id="file_action_panel"></div>
|
|
31b7f2792
|
45 46 47 |
<div class="notCreatable notPublic <?php if ($_['isCreatable'] or $_['isPublic'] ):?>hidden<?php endif; ?>">
<?php p($l->t('You don’t have permission to upload or create files here'))?>
</div>
|
|
03e52840d
|
48 49 |
<input type="hidden" name="permissions" value="<?php p($_['permissions']); ?>" id="permissions"> </div> |
|
31b7f2792
|
50 |
<div id="emptycontent" <?php if (!$_['emptyContent']):?>class="hidden"<?php endif; ?>><?php p($l->t('Nothing in here. Upload something!'))?></div>
|
|
a293d369c
|
51 |
<input type="hidden" id="disableSharing" data-status="<?php p($_['disableSharing']); ?>" /> |
|
03e52840d
|
52 |
|
|
31b7f2792
|
53 |
<table id="filestable" data-allow-public-upload="<?php p($_['publicUploadEnabled'])?>" data-preview-x="36" data-preview-y="36"> |
|
03e52840d
|
54 55 |
<thead> <tr> |
|
31b7f2792
|
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
<th <?php if (!$_['fileHeader']):?>class="hidden"<?php endif; ?> id='headerName'>
<div id="headerName-container">
<input type="checkbox" id="select_all" />
<label for="select_all"></label>
<span class="name"><?php p($l->t( 'Name' )); ?></span>
<span class="selectedActions">
<?php if($_['allowZipDownload']) : ?>
<a href="" class="download">
<img class="svg" alt="Download"
src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>" />
<?php p($l->t('Download'))?>
</a>
<?php endif; ?>
</span>
</div>
|
|
03e52840d
|
71 |
</th> |
|
31b7f2792
|
72 73 |
<th <?php if (!$_['fileHeader']):?>class="hidden"<?php endif; ?> id="headerSize"><?php p($l->t('Size')); ?></th>
<th <?php if (!$_['fileHeader']):?>class="hidden"<?php endif; ?> id="headerDate">
|
|
03e52840d
|
74 75 |
<span id="modified"><?php p($l->t( 'Modified' )); ?></span> <?php if ($_['permissions'] & OCP\PERMISSION_DELETE): ?> |
|
31b7f2792
|
76 77 78 79 80 |
<span class="selectedActions"><a href="" class="delete-selected">
<?php p($l->t('Delete'))?>
<img class="svg" alt="<?php p($l->t('Delete'))?>"
src="<?php print_unescaped(OCP\image_path("core", "actions/delete.svg")); ?>" />
</a></span>
|
|
03e52840d
|
81 82 83 84 85 86 87 88 |
<?php endif; ?> </th> </tr> </thead> <tbody id="fileList"> <?php print_unescaped($_['fileList']); ?> </tbody> </table> |
|
31b7f2792
|
89 |
<div id="editor"></div><!-- FIXME Do not use this div in your app! It is deprecated and will be removed in the future! --> |
|
03e52840d
|
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
<div id="uploadsize-message" title="<?php p($l->t('Upload too large'))?>">
<p>
<?php p($l->t('The files you are trying to upload exceed the maximum size for file uploads on this server.'));?>
</p>
</div>
<div id="scanning-message">
<h3>
<?php p($l->t('Files are being scanned, please wait.'));?> <span id='scan-count'></span>
</h3>
<p>
<?php p($l->t('Current scanning'));?> <span id='scan-current'></span>
</p>
</div>
<!-- config hints for javascript -->
|
|
31b7f2792
|
105 106 |
<input type="hidden" name="filesApp" id="filesApp" value="1" /> <input type="hidden" name="ajaxLoad" id="ajaxLoad" value="<?php p($_['ajaxLoad']); ?>" /> |
|
03e52840d
|
107 108 |
<input type="hidden" name="allowZipDownload" id="allowZipDownload" value="<?php p($_['allowZipDownload']); ?>" /> <input type="hidden" name="usedSpacePercent" id="usedSpacePercent" value="<?php p($_['usedSpacePercent']); ?>" /> |
|
31b7f2792
|
109 110 111 112 113 114 |
<?php if (!$_['isPublic']) :?>
<input type="hidden" name="encryptedFiles" id="encryptedFiles" value="<?php $_['encryptedFiles'] ? p('1') : p('0'); ?>" />
<input type="hidden" name="encryptedInitStatus" id="encryptionInitStatus" value="<?php p($_['encryptionInitStatus']) ?>" />
<input type="hidden" name="mailNotificationEnabled" id="mailNotificationEnabled" value="<?php p($_['mailNotificationEnabled']) ?>" />
<input type="hidden" name="allowShareWithLink" id="allowShareWithLink" value="<?php p($_['allowShareWithLink']) ?>" />
<?php endif;
|