diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-07-30 11:00:25 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-07-30 11:00:25 +0200 |
commit | f9ddbc4925fe250ce678182375b26f018f2c525e (patch) | |
tree | 7ee0e374573fcf844e30d001219fdde4f06175b1 /files | |
parent | 8426babab962539d91ee00d348a0004755a15866 (diff) | |
download | nextcloud-server-f9ddbc4925fe250ce678182375b26f018f2c525e.tar.gz nextcloud-server-f9ddbc4925fe250ce678182375b26f018f2c525e.zip |
documented file size and date color calculation part
Diffstat (limited to 'files')
-rw-r--r-- | files/templates/part.list.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/templates/part.list.php b/files/templates/part.list.php index 9ed3494732d..3713d483b00 100644 --- a/files/templates/part.list.php +++ b/files/templates/part.list.php @@ -1,10 +1,10 @@ <?php if(!$_['files']) echo '<span id="emptyfolder">Nothing in here. Upload something!</span><style>.file_upload_filename { background-color:#ffc100; border:#dda600 1px solid; }</style>'; foreach($_['files'] as $file): $simple_file_size = simple_file_size($file['size']); - $simple_size_color = 200-intval($file['size']/(1024*1024)*2); + $simple_size_color = 200-intval($file['size']/(1024*1024)*2); // the bigger the file, the darker the shade of grey if($simple_size_color<0) $simple_size_color = 0; $relative_modified_date = relative_modified_date($file['mtime']); - $relative_date_color = round((time()-$file['mtime'])/60/60/24*7); //days ago + $relative_date_color = round((time()-$file['mtime'])/60/60/24*14); // the older the file, the brighter the shade of grey 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"> |