Skip to content
Snippets Groups Projects
Commit d23d4e66 authored by Jan-Christoph Borchardt's avatar Jan-Christoph Borchardt
Browse files

revised color calculation for size and age

parent 18d8f34f
No related branches found
No related tags found
No related merge requests found
<?php foreach($_['files'] as $file):
$simple_file_size = simple_file_size($file['size']);
$simple_size_color = 200-intval(pow(($file['size']/(1024*1024)),2));
$simple_size_color = 200-intval($file['size']/(1024*1024)*20);
$relative_modified_date = relative_modified_date($file['mtime']);
$relative_date_color = round((time()-$file['mtime'])/60/60/24*5); //days ago
$relative_date_color = round((time()-$file['mtime'])/60/60/24*7); //days ago
if($relative_date_color>200) $relative_date_color = 200; ?>
<tr data-file="<?php echo $file['name'];?>" data-type="<?php echo ($file['type'] == 'dir')?'dir':'file'?>" data-mime="<?php echo $file['mime']?>" data-size='<?php echo $file['size'];?>'>
<td class="filename">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment