summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/templates/index.php
blob: ebabec2d4d07ea63038b279b3da1edae838e0f2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!--[if IE 8]><style>input[type="checkbox"]{padding:0;}table td{position:static !important;}</style><![endif]-->
<div id="controls">
	<?php echo($_['breadcrumb']); ?>
		<div id="file_action_panel"></div>
</div>
<div id='notification'></div>

<?php if (isset($_['files']) && count($_['files'])==0):?>
	<div id="emptyfolder"><?php echo $l->t('Nothing in here. Trash bin empty!')?></div>
<?php endif; ?>

<table>
	<thead>
		<tr>
			<th id='headerName'>
				<input type="checkbox" id="select_all" />
				<span class='name'><?php echo $l->t( 'Name' ); ?></span>
				<span class='selectedActions'>
						<a href="" class="undelete">
							<img class="svg" alt="Undelete"
								 src="<?php echo OCP\image_path("core", "actions/undelete.png"); ?>" />
							<?php echo $l->t('Undelete')?>
						</a>
				</span>
			</th>
			<th id="headerDate">
				<span id="modified"><?php echo $l->t( 'Deleted' ); ?></span>
			</th>
		</tr>
	</thead>
	<tbody id="fileList">
		<?php echo($_['fileList']); ?>
	</tbody>
</table>