2014-04-28 15:58:23 +00:00
|
|
|
<?php /** @var $l OC_L10N */ ?>
|
2013-01-18 12:11:29 +00:00
|
|
|
<div id="controls">
|
2013-10-28 19:22:06 +00:00
|
|
|
<div id="file_action_panel"></div>
|
2013-01-18 12:11:29 +00:00
|
|
|
</div>
|
|
|
|
<div id='notification'></div>
|
|
|
|
|
2013-10-28 19:22:06 +00:00
|
|
|
<div id="emptycontent" class="hidden"><?php p($l->t('Nothing in here. Your trash bin is empty!'))?></div>
|
2013-01-18 12:11:29 +00:00
|
|
|
|
2014-05-08 20:06:30 +00:00
|
|
|
<input type="hidden" name="dir" value="" id="dir">
|
|
|
|
|
2013-03-04 16:04:50 +00:00
|
|
|
<table id="filestable">
|
2013-01-18 12:11:29 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2014-04-03 18:57:06 +00:00
|
|
|
<th id='headerName' class="hidden column-name">
|
2013-10-09 09:11:55 +00:00
|
|
|
<div id="headerName-container">
|
2014-04-03 18:57:06 +00:00
|
|
|
<input type="checkbox" id="select_all" />
|
|
|
|
<label for="select_all"></label>
|
|
|
|
<a class="name sort columntitle" data-sort="name"><span><?php p($l->t( 'Name' )); ?></span><span class="sort-indicator"></span></a>
|
|
|
|
<span id="selectedActionsList" class='selectedActions'>
|
2013-01-18 16:50:44 +00:00
|
|
|
<a href="" class="undelete">
|
2013-02-27 20:46:37 +00:00
|
|
|
<img class="svg" alt="<?php p($l->t( 'Restore' )); ?>"
|
2013-06-17 11:30:57 +00:00
|
|
|
src="<?php print_unescaped(OCP\image_path("core", "actions/history.svg")); ?>" />
|
2013-02-27 20:46:37 +00:00
|
|
|
<?php p($l->t('Restore'))?>
|
2013-01-18 12:11:29 +00:00
|
|
|
</a>
|
2014-04-03 18:57:06 +00:00
|
|
|
</span>
|
2013-10-09 09:11:55 +00:00
|
|
|
</div>
|
2013-01-18 12:11:29 +00:00
|
|
|
</th>
|
2014-04-03 18:57:06 +00:00
|
|
|
<th id="headerDate" class="hidden column-mtime">
|
|
|
|
<a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t( 'Deleted' )); ?></span><span class="sort-indicator"></span></a>
|
2013-02-19 09:24:21 +00:00
|
|
|
<span class="selectedActions">
|
2014-04-04 14:43:35 +00:00
|
|
|
<a href="" class="delete-selected">
|
2013-02-27 20:46:37 +00: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")); ?>" />
|
2013-02-19 09:24:21 +00:00
|
|
|
</a>
|
|
|
|
</span>
|
2013-01-18 12:11:29 +00:00
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="fileList">
|
|
|
|
</tbody>
|
2014-02-11 15:52:56 +00:00
|
|
|
<tfoot>
|
|
|
|
</tfoot>
|
2013-01-18 12:11:29 +00:00
|
|
|
</table>
|