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
<!--[if IE 8]><style>input[type="checkbox"]{padding:0;}table td{position:static !important;}</style><![endif]-->
<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>
<?php if (isset($_['files']) && count($_['files']) === 0 && $_['dirlisting'] === false && !$_['ajaxLoad']):?>
2013-08-31 19:25:11 +04:00
<div id="emptycontent"><?php p($l->t('Nothing in here. Your trash bin is empty!'))?></div>
2013-01-18 16:11:29 +04:00
<?php endif; ?>
<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'>
<input type="checkbox" id="select_all" />
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>
</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>