nextcloud/apps/files_trashbin/templates/index.php

46 lines
1.6 KiB
PHP
Raw Normal View History

2013-01-18 16:11:29 +04:00
<div id="controls">
2013-02-28 00:46:37 +04:00
<?php print_unescaped($_['breadcrumb']); ?>
2013-01-18 16:11:29 +04:00
<div id="file_action_panel"></div>
</div>
<div id='notification'></div>
<div id="emptycontent" <?php if (!(isset($_['files']) && count($_['files']) === 0 && $_['dirlisting'] === false && !$_['ajaxLoad'])):?>class="hidden"<?php endif; ?>><?php p($l->t('Nothing in here. Your trash bin is empty!'))?></div>
2013-01-18 16:11:29 +04:00
<input type="hidden" name="ajaxLoad" id="ajaxLoad" value="<?php p($_['ajaxLoad']); ?>" />
<input type="hidden" id="disableSharing" data-status="<?php p($_['disableSharing']); ?>"></input>
<input type="hidden" name="dir" value="<?php p($_['dir']) ?>" id="dir">
2013-03-04 20:04:50 +04:00
<table id="filestable">
2013-01-18 16:11:29 +04:00
<thead>
<tr>
<th id='headerName'>
2013-10-09 13:11:55 +04:00
<div id="headerName-container">
2013-01-18 16:11:29 +04:00
<input type="checkbox" id="select_all" />
2013-10-09 13:11:55 +04:00
<label for="select_all"></label>
2013-02-28 00:46:37 +04:00
<span class='name'><?php p($l->t( 'Name' )); ?></span>
2013-01-18 16:11:29 +04:00
<span class='selectedActions'>
2013-01-18 20:50:44 +04:00
<a href="" class="undelete">
2013-02-28 00:46:37 +04:00
<img class="svg" alt="<?php p($l->t( 'Restore' )); ?>"
src="<?php print_unescaped(OCP\image_path("core", "actions/history.svg")); ?>" />
2013-02-28 00:46:37 +04:00
<?php p($l->t('Restore'))?>
2013-01-18 16:11:29 +04:00
</a>
</span>
2013-10-09 13:11:55 +04:00
</div>
2013-01-18 16:11:29 +04:00
</th>
<th id="headerDate">
2013-02-28 00:46:37 +04:00
<span id="modified"><?php p($l->t( 'Deleted' )); ?></span>
<span class="selectedActions">
<a href="" class="delete">
2013-02-28 00:46:37 +04:00
<?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>
2013-01-18 16:11:29 +04:00
</th>
</tr>
</thead>
<tbody id="fileList">
2013-02-28 00:46:37 +04:00
<?php print_unescaped($_['fileList']); ?>
2013-01-18 16:11:29 +04:00
</tbody>
</table>