2011-08-08 23:40:39 +04:00
|
|
|
|
<div id="controls">
|
2013-10-28 23:22:06 +04:00
|
|
|
|
<div class="actions creatable hidden">
|
2014-01-15 18:07:52 +04:00
|
|
|
|
<?php if(!isset($_['dirToken'])):?>
|
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>
|
2014-03-27 17:48:54 +04:00
|
|
|
|
<li class="icon-filetype-text svg"
|
2014-02-21 17:07:25 +04:00
|
|
|
|
data-type="file" data-newname="<?php p($l->t('New text file')) ?>.txt">
|
|
|
|
|
<p><?php p($l->t('Text file'));?></p>
|
|
|
|
|
</li>
|
2014-03-27 17:48:54 +04:00
|
|
|
|
<li class="icon-filetype-folder svg"
|
2014-02-21 17:07:25 +04:00
|
|
|
|
data-type="folder" data-newname="<?php p($l->t('New folder')) ?>">
|
|
|
|
|
<p><?php p($l->t('Folder'));?></p>
|
|
|
|
|
</li>
|
2014-03-27 17:48:54 +04:00
|
|
|
|
<li class="icon-link svg" data-type="web">
|
2014-02-21 17:07:25 +04:00
|
|
|
|
<p><?php p($l->t('From link'));?></p>
|
|
|
|
|
</li>
|
2011-12-16 20:39:15 +04:00
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
2014-01-15 18:07:52 +04:00
|
|
|
|
<?php endif;?>
|
2013-01-07 15:23:29 +04:00
|
|
|
|
<div id="upload" class="button"
|
2014-04-21 04:28:34 +04:00
|
|
|
|
title="<?php p($l->t('Upload (max. %s)', array($_['uploadMaxHumanFilesize']))) ?>">
|
2013-03-15 19:40:36 +04:00
|
|
|
|
<?php if($_['uploadMaxFilesize'] >= 0):?>
|
2013-12-11 08:09:48 +04:00
|
|
|
|
<input type="hidden" id="max_upload" name="MAX_FILE_SIZE" value="<?php p($_['uploadMaxFilesize']) ?>">
|
2013-03-15 19:40:36 +04:00
|
|
|
|
<?php endif;?>
|
2013-12-08 19:17:35 +04:00
|
|
|
|
<input type="hidden" id="upload_limit" value="<?php p($_['uploadLimit']) ?>">
|
|
|
|
|
<input type="hidden" id="free_space" value="<?php p($_['freeSpace']) ?>">
|
2014-01-15 17:36:18 +04:00
|
|
|
|
<?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;?>
|
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">
|
2013-09-13 19:00:07 +04:00
|
|
|
|
<input type="file" id="file_upload_start" name='files[]'
|
|
|
|
|
data-url="<?php print_unescaped(OCP\Util::linkTo('files', 'ajax/upload.php')); ?>" />
|
2014-03-14 17:47:40 +04:00
|
|
|
|
<a href="#" class="svg icon-upload"></a>
|
2011-12-16 20:39:15 +04:00
|
|
|
|
</div>
|
2013-11-21 15:06:35 +04:00
|
|
|
|
<?php if ($_['trash']): ?>
|
2014-01-17 19:29:16 +04:00
|
|
|
|
<input id="trash" type="button" value="<?php p($l->t('Deleted files'));?>" class="button" <?php $_['trashEmpty'] ? p('disabled') : '' ?> />
|
2013-02-04 21:30:49 +04:00
|
|
|
|
<?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
|
|
|
|
/>
|
2013-02-04 21:30:49 +04:00
|
|
|
|
</div>
|
2011-11-04 19:16:54 +04:00
|
|
|
|
</div>
|
2011-12-16 20:39:15 +04:00
|
|
|
|
<div id="file_action_panel"></div>
|
2013-10-28 23:22:06 +04:00
|
|
|
|
<div class="notCreatable notPublic hidden">
|
2013-10-21 00:46:01 +04:00
|
|
|
|
<?php p($l->t('You don’t have permission to upload or create files here'))?>
|
2013-08-30 01:45:02 +04:00
|
|
|
|
</div>
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<input type="hidden" name="permissions" value="<?php p($_['permissions']); ?>" id="permissions">
|
2011-03-03 01:06:23 +03:00
|
|
|
|
</div>
|
|
|
|
|
|
2013-10-28 23:22:06 +04:00
|
|
|
|
<div id="emptycontent" class="hidden"><?php p($l->t('Nothing in here. Upload something!'))?></div>
|
2013-08-17 15:07:18 +04:00
|
|
|
|
|
2014-01-17 19:29:16 +04:00
|
|
|
|
<input type="hidden" id="disableSharing" data-status="<?php p($_['disableSharing']); ?>" />
|
2011-08-20 07:07:58 +04:00
|
|
|
|
|
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">
|
2011-03-03 01:06:23 +03:00
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
2013-10-28 23:22:06 +04:00
|
|
|
|
<th class="hidden" id='headerName'>
|
2013-08-14 22:41:20 +04:00
|
|
|
|
<div id="headerName-container">
|
|
|
|
|
<input type="checkbox" id="select_all" />
|
|
|
|
|
<label for="select_all"></label>
|
|
|
|
|
<span class="name"><?php p($l->t( 'Name' )); ?></span>
|
2014-03-11 17:29:26 +04:00
|
|
|
|
<span id="selectedActionsList" class="selectedActions">
|
2013-08-14 22:41:20 +04:00
|
|
|
|
<?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-28 23:22:06 +04:00
|
|
|
|
<th class="hidden" id="headerSize"><?php p($l->t('Size')); ?></th>
|
|
|
|
|
<th class="hidden" id="headerDate">
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<span id="modified"><?php p($l->t( 'Modified' )); ?></span>
|
2012-11-11 22:58:54 +04:00
|
|
|
|
<?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>
|
2012-09-07 04:36:25 +04:00
|
|
|
|
<?php endif; ?>
|
|
|
|
|
</th>
|
2011-03-03 01:06:23 +03:00
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
2012-07-25 05:35:03 +04:00
|
|
|
|
<tbody id="fileList">
|
2011-03-03 01:06:23 +03:00
|
|
|
|
</tbody>
|
2014-02-11 19:52:56 +04:00
|
|
|
|
<tfoot>
|
|
|
|
|
</tfoot>
|
2011-03-03 01:06:23 +03:00
|
|
|
|
</table>
|
2013-09-03 15:17:16 +04:00
|
|
|
|
<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'))?>">
|
2011-07-22 17:48:30 +04:00
|
|
|
|
<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.'));?>
|
2011-07-22 17:48:30 +04:00
|
|
|
|
</p>
|
|
|
|
|
</div>
|
2011-11-10 19:40:09 +04:00
|
|
|
|
<div id="scanning-message">
|
2012-01-31 16:56:58 +04:00
|
|
|
|
<h3>
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<?php p($l->t('Files are being scanned, please wait.'));?> <span id='scan-count'></span>
|
2012-01-31 16:56:58 +04:00
|
|
|
|
</h3>
|
2011-11-10 19:40:09 +04:00
|
|
|
|
<p>
|
2013-02-28 00:14:15 +04:00
|
|
|
|
<?php p($l->t('Current scanning'));?> <span id='scan-current'></span>
|
2011-11-10 19:40:09 +04:00
|
|
|
|
</p>
|
|
|
|
|
</div>
|
2012-03-19 14:56:02 +04:00
|
|
|
|
|
|
|
|
|
<!-- config hints for javascript -->
|
2013-10-08 19:19:58 +04:00
|
|
|
|
<input type="hidden" name="filesApp" id="filesApp" value="1" />
|
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']); ?>" />
|
2013-11-21 15:02:09 +04:00
|
|
|
|
<?php if (!$_['isPublic']) :?>
|
2013-08-12 19:25:27 +04:00
|
|
|
|
<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']) ?>" />
|
2013-08-30 15:53:49 +04:00
|
|
|
|
<input type="hidden" name="mailNotificationEnabled" id="mailNotificationEnabled" value="<?php p($_['mailNotificationEnabled']) ?>" />
|
2013-10-21 13:29:40 +04:00
|
|
|
|
<input type="hidden" name="allowShareWithLink" id="allowShareWithLink" value="<?php p($_['allowShareWithLink']) ?>" />
|
2013-11-21 15:02:09 +04:00
|
|
|
|
<?php endif;
|