%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11584/cwd/html/old/components/com_kunena/template/nts_kargo/html/user/ |
Upload File : |
<?php /** * Kunena Component * @package Kunena.Template.Blue_Eagle * @subpackage User * * @copyright (C) 2008 - 2013 Kunena Team. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * @link http://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; foreach ($this->items as $item) : $message = $item->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 ($item->authorise('delete')) echo JHtml::_('grid.id', $i, intval($item->id)) ?></td> <td align="center" class="kcol-mid"><img src="<?php echo $item->filetype != '' ? 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 KunenaForumMessageAttachmentHelper::shortenFileName($item->filename, 5, 5); ?></td> <td class="kcol-mid"><?php echo number_format ( intval ( $item->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 $item->getThumbnailLink() ; ?></td> <td align="center" class="kcol-mid"> <?php if ($item->authorise('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>