| Current Path : /home/lejardintz/www/components/com_kunena/template/blue_eagle/html/user/ |
| Current File : /home/lejardintz/www/components/com_kunena/template/blue_eagle/html/user/default_attachments.php |
<?php
/**
* Kunena Component
* @package Kunena.Template.Blue_Eagle
* @subpackage User
*
* @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 ();
JHtml::_('behavior.multiselect');
?>
<div class="kblock">
<div class="kheader">
<h2><span><?php echo $this->title;?></span></h2>
</div>
<div class="kcontainer">
<div class="kbody">
<form action="<?php echo KunenaRoute::_('index.php?option=com_kunena') ?>" method="post" id="adminForm" name="adminForm">
<input type="hidden" name="view" value="user">
<input type="hidden" name="task" value="delfile" />
<input type="hidden" name="boxchecked" value="0" />
<?php echo JHtml::_( 'form.token' ); ?>
<table>
<tr class="ksth">
<th class="frst"> # </th>
<th width="5">
<input type="checkbox" name="checkall-toggle" value="cid" title="<?php echo JText::_('COM_KUNENA_CHECK_ALL'); ?>" onclick="Joomla.checkAll(this)" />
</th>
<th><?php echo JText::_('COM_KUNENA_FILETYPE'); ?></th>
<th><?php echo JText::_('COM_KUNENA_FILENAME'); ?></th>
<th><?php echo JText::_('COM_KUNENA_FILESIZE'); ?></th>
<th><?php echo JText::_('COM_KUNENA_ATTACHMENT_MANAGER_TOPIC'); ?></th>
<th><?php echo JText::_('COM_KUNENA_PREVIEW'); ?></th>
<th><?php echo JText::_('COM_KUNENA_DELETE'); ?></th>
</tr>
<?php
if ( empty($this->items) ) :
echo JText::_('COM_KUNENA_USER_NO_ATTACHMENTS');
else :
$i=0;
$y=1;
/** @var KunenaAttachment $attachment */
foreach ($this->items as $attachment) :
$message = $attachment->getMessage();
$evenodd = $i % 2;
if ($evenodd == 0) $usrl_class="row1";
else $usrl_class="row2";
?>
<tr class="k<?php echo $usrl_class ;?>">
<td class="kcol-first"><?php echo $y; ?></td>
<td class="kcol-mid"><?php if ($attachment->isAuthorised('delete')) echo JHtml::_('grid.id', $i, intval($attachment->id)) ?></td>
<td align="center" class="kcol-mid"><img src="<?php echo $attachment->isImage() ? JUri::root(true).'/media/kunena/icons/image.png' : JUri::root(true).'/media/kunena/icons/file.png'; ?>" alt="" title="" /></td>
<td class="kcol-mid"><?php echo $attachment->getShortName(5, 5); ?></td>
<td class="kcol-mid"><?php echo number_format ( intval ( $attachment->size ) / 1024, 0, '', ',' ) . ' '.JText::_('COM_KUNENA_USER_ATTACHMENT_FILE_WEIGHT'); ?></td>
<td class="kcol-mid"><?php echo $this->getTopicLink($message->getTopic(), $message); ?></td>
<td align="center" class="kcol-mid"><?php echo $attachment->getThumbnailLink() ; ?></td>
<td align="center" class="kcol-mid">
<?php if ($attachment->isAuthorised('delete')) : ?>
<a href="javascript:void(0);" onclick="return listItemTask('cb<?php echo $i; ?>','delfile')">
<img src="<?php echo $this->ktemplate->getImagePath('icons/publish_x.png') ?>" alt="" title="" />
</a>
<?php endif ?>
</td>
</tr>
<?php
$i++; $y++;
endforeach;
endif;
?>
</table>
<input class="kbutton" type="submit" value="<?php echo JText::_('COM_KUNENA_FILES_DELETE') ?>" style="float:right;" />
</form>
</div>
</div>
</div>