| Current Path : /home/lejardintz/www/components/com_kunena/template/blue_eagle/html/topic/ |
| Current File : /home/lejardintz/www/components/com_kunena/template/blue_eagle/html/topic/edit_attachments.php |
<?php
/**
* Kunena Component
* @package Kunena.Template.Blue_Eagle
* @subpackage Topic
*
* @copyright (C) 2008 - 2016 Kunena Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined ( '_JEXEC' ) or die ();
?>
<div>
<div class="kmsgattach">
<ul class="kfile-attach-editing">
<?php foreach($this->attachments as $attachment) : ?>
<li class="kattachment-old">
<span>
<input type="hidden" name="attachments[<?php echo $attachment->id ?>]" value="<?php echo $attachment->getFilename() ?>" />
<input type="checkbox" name="attachment[<?php echo $attachment->id ?>]" checked="checked" value="<?php echo $attachment->id ?>" />
<a href="#" class="kattachment-insert" style="display: none;"><?php echo JText::_('COM_KUNENA_EDITOR_INSERT'); ?></a>
</span>
<?php echo $attachment->getThumbnailLink(); ?>
<span>
<span class="kfilename"><?php echo $this->escape($attachment->getShortName()); ?></span>
<span><?php echo '('.number_format(intval($attachment->size)/1024,0,'',',').'KB)'; ?></span>
</span>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>