2011-07-07 03:52:26 +04:00
|
|
|
<?php foreach($_['files'] as $file):
|
|
|
|
$simple_file_size = simple_file_size($file['size']);
|
2011-07-20 18:06:58 +04:00
|
|
|
$simple_size_color = 200-intval(pow(($file['size']/(1024*1024)),2)); ?>
|
2011-07-07 03:27:16 +04:00
|
|
|
<tr data-file="<?php echo $file['name'];?>" data-type="<?php echo ($file['type'] == 'dir')?'dir':'file'?>" data-mime="<?php echo $file['mime']?>">
|
2011-04-17 18:19:21 +04:00
|
|
|
<td class="selection"><input type="checkbox" /></td>
|
2011-07-07 04:41:22 +04:00
|
|
|
<td class="filename">
|
|
|
|
<a style="background-image:url(<?php if($file['type'] == 'dir') echo mimetype_icon('dir'); else echo mimetype_icon($file['mime']); ?>)" href="<?php if($file['type'] == 'dir') echo link_to('files', 'index.php?dir='.$file['directory'].'/'.$file['name']); else echo link_to('files', 'download.php?file='.$file['directory'].'/'.$file['name']); ?>" title="">
|
|
|
|
<?php if($file['type'] == 'dir'):?>
|
|
|
|
<strong><?php echo htmlspecialchars($file['name']);?></strong>
|
|
|
|
<?php else:?>
|
2011-07-07 06:14:24 +04:00
|
|
|
<?php echo htmlspecialchars($file['basename']);?><span class='extention'><?php echo $file['extention'];?></span>
|
2011-07-07 04:41:22 +04:00
|
|
|
<?php endif;?>
|
|
|
|
</a>
|
|
|
|
</td>
|
2011-07-07 03:52:26 +04:00
|
|
|
<td class="filesize" title="<?php echo human_file_size($file['size']); ?>" style="color:rgb(<?php echo $simple_size_color.','.$simple_size_color.','.$simple_size_color ?>)"><?php echo $simple_file_size; ?></td>
|
2011-07-07 03:27:16 +04:00
|
|
|
<td class="date"><?php echo $file['date']; ?></td>
|
|
|
|
<td class="fileaction"><a href="" title="+" class="dropArrow"></a></td>
|
2011-04-17 18:19:21 +04:00
|
|
|
</tr>
|
2011-07-07 02:20:40 +04:00
|
|
|
<?php endforeach; ?>
|