You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
richdocuments/templates/documents.php

28 lines
833 B
PHP

<?php
if(empty($_['list'])) {
echo('<div id="emptyfolder">No documents are found. Please upload a document into your ownCloud</div>');
}else{
echo('<table class="documentslist" >');
foreach($_['list'] as $entry) {
echo('
<tr>
<td width="1"><img align="left" src="'.\OCP\Util::linkToAbsolute('office','ajax/thumbnail.php').'?filepath='.urlencode($entry['url']).'"></td>
<td width="1"><img align="left" src="'.\OCP\Util::linkToAbsolute('office','img/office.png').'"></td>
<td><a target="_blank" href="'.\OCP\Util::linkToAbsolute('files','download.php').'&file='.urlencode($entry['url']).'&name='.urlencode($entry['name']).'">'.$entry['name'].'</a></td>
<td>'.\OCP\Util::formatDate($entry['mtime']).'</td><td>'.\OCP\Util::humanFileSize($entry['size']).'</td>
</tr>'
);
}
echo('</table>');
}