Blame view
sources/apps/files_trashbin/templates/index.php
1.51 KB
|
6d9380f96
|
1 |
<?php /** @var $l OC_L10N */ ?> |
|
03e52840d
|
2 |
<div id="controls"> |
|
6d9380f96
|
3 |
<div id="file_action_panel"></div> |
|
03e52840d
|
4 5 |
</div> <div id='notification'></div> |
|
6d9380f96
|
6 |
<div id="emptycontent" class="hidden"><?php p($l->t('Nothing in here. Your trash bin is empty!'))?></div>
|
|
31b7f2792
|
7 |
|
|
6d9380f96
|
8 |
<input type="hidden" name="dir" value="" id="dir"> |
|
03e52840d
|
9 10 11 12 |
<table id="filestable"> <thead> <tr> |
|
6d9380f96
|
13 |
<th id='headerName' class="hidden column-name"> |
|
31b7f2792
|
14 |
<div id="headerName-container"> |
|
6d9380f96
|
15 16 17 18 |
<input type="checkbox" id="select_all_trash" class="select-all"/> <label for="select_all_trash"></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'> |
|
03e52840d
|
19 20 |
<a href="" class="undelete"> <img class="svg" alt="<?php p($l->t( 'Restore' )); ?>" |
|
31b7f2792
|
21 |
src="<?php print_unescaped(OCP\image_path("core", "actions/history.svg")); ?>" />
|
|
03e52840d
|
22 23 |
<?php p($l->t('Restore'))?>
</a>
|
|
6d9380f96
|
24 |
</span> |
|
31b7f2792
|
25 |
</div> |
|
03e52840d
|
26 |
</th> |
|
6d9380f96
|
27 28 |
<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> |
|
03e52840d
|
29 |
<span class="selectedActions"> |
|
6d9380f96
|
30 |
<a href="" class="delete-selected"> |
|
03e52840d
|
31 32 33 34 35 36 37 38 39 |
<?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>
</th>
</tr>
</thead>
<tbody id="fileList">
|
|
03e52840d
|
40 |
</tbody> |
|
6d9380f96
|
41 42 |
<tfoot> </tfoot> |
|
03e52840d
|
43 |
</table> |