| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?php if($files):?>
- <?php $sessionString = session_name() . '=' . session_id();?>
- <?php if($fieldset == 'true'):?>
- <div class="detail">
- <div class="detail-content">
- <?php endif;?>
- <style>
- .files-list>li>a {display: inline; word-wrap: break-word;}
- .files-list>li>.right-icon {opacity: 1;}
- .fileAction {color: #0c64eb !important;}
- </style>
- <script>
- /* Delete a file. */
- function deleteFile(fileID)
- {
- if(!fileID) return;
- hiddenwin.location.href = createLink('file', 'delete', 'fileID=' + fileID);
- }
- /* Download a file, append the mouse to the link. Thus we call decide to open the file in browser no download it. */
- function downloadFile(fileID, extension, imageWidth, fileTitle)
- {
- if(!fileID) return;
- var fileTypes = 'txt,jpg,jpeg,gif,png,bmp';
- var windowWidth = $(window).width();
- var width = (windowWidth > imageWidth) ? ((imageWidth < windowWidth * 0.5) ? windowWidth * 0.5 : imageWidth) : windowWidth;
- var checkExtension = fileTitle.lastIndexOf('.' + extension) == (fileTitle.length - extension.length - 1);
- var url = createLink('file', 'download', 'fileID=' + fileID + '&mouse=left');
- url += url.indexOf('?') >= 0 ? '&' : '?';
- url += '<?php echo $sessionString;?>';
- if(fileTypes.indexOf(extension) >= 0 && checkExtension && config.onlybody != 'yes')
- {
- $('<a>').modalTrigger({url: url, type: 'iframe', width: width}).trigger('click');
- }
- else
- {
- url = url.replace('?onlybody=yes&', '?');
- url = url.replace('?onlybody=yes', '?');
- url = url.replace('&onlybody=yes', '');
- window.open(url, '_blank');
- }
- return false;
- }
- </script>
- <ul class="files-list">
- <?php
- foreach($files as $file)
- {
- if(common::hasPriv('file', 'download'))
- {
- $uploadDate = $lang->file->uploadDate . substr($file->addedDate, 0, 10);
- $fileTitle = "<i class='icon icon-file-text'></i> " . $file->title;
- if(strpos($file->title, ".{$file->extension}") === false && $file->extension != 'txt') $fileTitle .= ".{$file->extension}";
- $imageSize = $this->file->getImageSize($file);
- $imageWidth = $imageSize[0];
- $fileSize = 0;
- /* Show size info. */
- if($file->size < 1024)
- {
- $fileSize = $file->size . 'B';
- }
- elseif($file->size < 1024 * 1024)
- {
- $file->size = round($file->size / 1024, 2);
- $fileSize = $file->size . 'K';
- }
- elseif($file->size < 1024 * 1024 * 1024)
- {
- $file->size = round($file->size / (1024 * 1024), 2);
- $fileSize = $file->size . 'M';
- }
- else
- {
- $file->size = round($file->size / (1024 * 1024 * 1024), 2);
- $fileSize = $file->size . 'G';
- }
- $downloadLink = $this->createLink('file', 'download', "fileID=$file->id");
- $downloadLink .= strpos($downloadLink, '?') === false ? '?' : '&';
- $downloadLink .= $sessionString;
- echo "<li title='{$uploadDate}'>" . html::a($downloadLink, $fileTitle . " <span class='text-muted'>({$fileSize})</span>", '_blank', "onclick=\"return downloadFile($file->id, '$file->extension', $imageWidth, '$file->title')\"");
- $objectType = zget($this->config->file->objectType, $file->objectType);
- if(common::hasPriv($objectType, 'edit', $object))
- {
- echo "<span class='right-icon'> ";
- common::printLink('file', 'edit', "fileID=$file->id", $lang->file->edit, '', "data-width='400' class='fileAction btn btn-link edit iframe text-primary' title='{$lang->file->edit}'");
- if(common::hasPriv('file', 'delete')) echo html::a('###', $lang->delete, '', "class='fileAction btn btn-link text-primary' onclick='deleteFile($file->id)' title='$lang->delete'");
- echo '</span>';
- }
- echo '</li>';
- }
- }
- ?>
- </ul>
- <?php if($fieldset == 'true'):?>
- </div>
- </div>
- <?php endif;?>
- <?php endif;?>
|