nextcloud/apps/files/templates/index.php

111 lines
5.4 KiB
PHP
Raw Normal View History

2011-08-08 23:40:39 +04:00
<div id="controls">
2013-02-28 00:14:15 +04:00
<?php print_unescaped($_['breadcrumb']); ?>
<div class="actions creatable <?php if (!$_['isCreatable']):?>hidden<?php endif; ?>">
2012-11-06 15:20:57 +04:00
<div id="new" class="button">
2013-02-28 00:14:15 +04:00
<a><?php p($l->t('New'));?></a>
2012-12-13 22:04:27 +04:00
<ul>
2013-02-28 00:14:15 +04:00
<li style="background-image:url('<?php p(OCP\mimetype_icon('text/plain')) ?>')"
data-type='file' data-newname='<?php p($l->t('New text file')) ?>.txt'><p><?php p($l->t('Text file'));?></p></li>
2013-02-28 00:14:15 +04:00
<li style="background-image:url('<?php p(OCP\mimetype_icon('dir')) ?>')"
data-type='folder' data-newname='<?php p($l->t('New folder')) ?>'><p><?php p($l->t('Folder'));?></p></li>
2013-10-02 19:27:39 +04:00
<li style="background-image:url('<?php p(OCP\image_path('core', 'places/link.svg')) ?>')"
2013-02-28 00:14:15 +04:00
data-type='web'><p><?php p($l->t('From link'));?></p></li>
</ul>
</div>
<div id="upload" class="button"
2013-02-28 00:14:15 +04:00
title="<?php p($l->t('Upload') . ' max. '.$_['uploadMaxHumanFilesize']) ?>">
<?php if($_['uploadMaxFilesize'] >= 0):?>
2012-11-29 21:30:02 +04:00
<input type="hidden" name="MAX_FILE_SIZE" id="max_upload"
2013-02-28 00:14:15 +04:00
value="<?php p($_['uploadMaxFilesize']) ?>">
<?php endif;?>
2012-11-29 21:30:02 +04:00
<input type="hidden" class="max_human_file_size"
2013-02-28 00:14:15 +04:00
value="(max <?php p($_['uploadMaxHumanFilesize']); ?>)">
<input type="hidden" name="dir" value="<?php p($_['dir']) ?>" id="dir">
<input type="file" id="file_upload_start" name='files[]'
data-url="<?php print_unescaped(OCP\Util::linkTo('files', 'ajax/upload.php')); ?>" />
2013-04-29 01:26:07 +04:00
<a href="#" class="svg"></a>
</div>
<?php if ($_['trash']): ?>
<input id="trash" type="button" value="<?php p($l->t('Deleted files'));?>" class="button" <?php $_['trashEmpty'] ? p('disabled') : '' ?>></input>
<?php endif; ?>
<div id="uploadprogresswrapper">
<div id="uploadprogressbar"></div>
<input type="button" class="stop" style="display:none"
2013-02-28 00:14:15 +04:00
value="<?php p($l->t('Cancel upload'));?>"
2012-11-06 15:20:57 +04:00
/>
</div>
2011-11-04 19:16:54 +04:00
</div>
<div id="file_action_panel"></div>
<div class="notCreatable notPublic <?php if ($_['isCreatable'] or $_['isPublic'] ):?>hidden<?php endif; ?>">
2013-10-21 00:46:01 +04:00
<?php p($l->t('You dont have permission to upload or create files here'))?>
</div>
2013-02-28 00:14:15 +04:00
<input type="hidden" name="permissions" value="<?php p($_['permissions']); ?>" id="permissions">
</div>
2013-10-21 21:49:09 +04:00
<div id="emptycontent" <?php if (!$_['emptyContent']):?>class="hidden"<?php endif; ?>><?php p($l->t('Nothing in here. Upload something!'))?></div>
<input type="hidden" id="disableSharing" data-status="<?php p($_['disableSharing']); ?>"></input>
2013-08-14 13:38:52 +04:00
<table id="filestable" data-allow-public-upload="<?php p($_['publicUploadEnabled'])?>" data-preview-x="36" data-preview-y="36">
<thead>
<tr>
2013-10-21 21:49:09 +04:00
<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>
2011-07-22 00:01:55 +04:00
</th>
2013-10-21 21:49:09 +04:00
<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">
2013-02-28 00:14:15 +04:00
<span id="modified"><?php p($l->t( 'Modified' )); ?></span>
<?php if ($_['permissions'] & OCP\PERMISSION_DELETE): ?>
2013-12-05 20:41:19 +04:00
<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>
<?php endif; ?>
</th>
</tr>
</thead>
2012-07-25 05:35:03 +04:00
<tbody id="fileList">
2013-02-28 00:14:15 +04:00
<?php print_unescaped($_['fileList']); ?>
</tbody>
</table>
<div id="editor"></div><!-- FIXME Do not use this div in your app! It is deprecated and will be removed in the future! -->
2013-02-28 00:14:15 +04:00
<div id="uploadsize-message" title="<?php p($l->t('Upload too large'))?>">
<p>
2013-02-28 00:14:15 +04:00
<?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>
2013-02-28 00:14:15 +04:00
<?php p($l->t('Files are being scanned, please wait.'));?> <span id='scan-count'></span>
</h3>
<p>
2013-02-28 00:14:15 +04:00
<?php p($l->t('Current scanning'));?> <span id='scan-current'></span>
</p>
</div>
<!-- config hints for javascript -->
<input type="hidden" name="filesApp" id="filesApp" value="1" />
<input type="hidden" name="ajaxLoad" id="ajaxLoad" value="<?php p($_['ajaxLoad']); ?>" />
2013-02-28 00:14:15 +04:00
<input type="hidden" name="allowZipDownload" id="allowZipDownload" value="<?php p($_['allowZipDownload']); ?>" />
<input type="hidden" name="usedSpacePercent" id="usedSpacePercent" value="<?php p($_['usedSpacePercent']); ?>" />
<?php if (!$_['isPublic']) :?>
<input type="hidden" name="encryptedFiles" id="encryptedFiles" value="<?php $_['encryptedFiles'] ? p('1') : p('0'); ?>" />
2013-10-04 12:46:55 +04:00
<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;