nextcloud/apps/files_trashbin/templates/index.php

44 lines
1.4 KiB
PHP
Raw Normal View History

2013-01-18 16:11:29 +04:00
<div id="controls">
<div id="file_action_panel"></div>
2013-01-18 16:11:29 +04:00
</div>
<div id='notification'></div>
<div id="emptycontent" class="hidden"><?php p($l->t('Nothing in here. Your trash bin is empty!'))?></div>
2013-01-18 16:11:29 +04:00
<input type="hidden" id="permissions" value="0"></input>
2014-04-08 19:13:59 +04:00
<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">
</tbody>
</table>