%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 (); $j=count($this->banhistory); ?> <div class="kblock banhistory"> <div class="kheader"> <h2><span><?php echo JText::sprintf('COM_KUNENA_BAN_BANHISTORYFOR', $this->escape($this->profile->name)); ?></span></h2> </div> <div class="kcontainer"> <div class="kbody"> <table class="kblock-ban"> <thead> <tr class="ksth"> <th class="kid"> # </th> <th class="kbanfrom"><?php echo JText::_('COM_KUNENA_BAN_BANNEDFROM'); ?></th> <th class="kbanstart"><?php echo JText::_('COM_KUNENA_BAN_STARTTIME'); ?></th> <th class="kbanexpire"><?php echo JText::_('COM_KUNENA_BAN_EXPIRETIME'); ?></th> <th class="kbancreate"><?php echo JText::_('COM_KUNENA_BAN_CREATEDBY'); ?></th> <th class="kbanmodify"><?php echo JText::_('COM_KUNENA_BAN_MODIFIEDBY'); ?></th> </tr> </thead> <tbody> <?php if ( !empty($this->banhistory) ) : foreach ($this->banhistory as $userban) : ?> <tr class="krow1"> <td class="kcol-first kid"> <?php echo $j--; ?> </td> <td class="kcol-mid kbanfrom"> <span><?php echo $userban->blocked ? JText::_('COM_KUNENA_BAN_BANLEVEL_JOOMLA') : JText::_('COM_KUNENA_BAN_BANLEVEL_KUNENA') ?></span> </td> <td class="kcol-mid kbanstart"> <span><?php if( $userban->created_time ) echo KunenaDate::getInstance($userban->created_time)->toKunena('datetime'); ?></span> </td> <td class="kcol-mid kbanexpire"> <span><?php echo $userban->isLifetime() ? JText::_('COM_KUNENA_BAN_LIFETIME') : KunenaDate::getInstance($userban->expiration)->toKunena('datetime'); ?></span> </td> <td class="kcol-mid kbancreate"> <span><?php echo $userban->getCreator()->getLink() ?></span> </td> <td class="kcol-mid kbanmodify"> <?php if ( $userban->modified_by && $userban->modified_time) { ?> <span> <?php echo $userban->getModifier()->getLink() ?> <?php echo KunenaDate::getInstance($userban->modified_time)->toKunena('datetime'); } ?> </span> </td> </tr> <?php if($userban->reason_public) : ?> <tr class="krow2"> <td colspan="2" class="kcol-first kpublic-reason-label"><b><?php echo JText::_('COM_KUNENA_BAN_PUBLICREASON'); ?></b> :</td> <td colspan="4" class="kcol-mid kpublic-reason-field"><?php echo KunenaHtmlParser::parseText ($userban->reason_public); ?></td> </tr> <?php endif; ?> <?php if($userban->reason_private) : ?> <tr class="krow2"> <td colspan="2" class="kcol-first kprivate-reason-label"><b><?php echo JText::_('COM_KUNENA_BAN_PRIVATEREASON'); ?></b> :</td> <td colspan="4" class="kcol-mid kprivate-reason-field"><?php echo KunenaHtmlParser::parseText ($userban->reason_private); ?></td> </tr> <?php endif; ?> <?php if (is_array($userban->comments)) foreach ($userban->comments as $comment) : ?> <tr class="krow2"> <td colspan="2" class="kcol-first kcommentby-label"><b><?php echo JText::sprintf('COM_KUNENA_BAN_COMMENT_BY', KunenaFactory::getUser(intval($comment->userid))->getLink()) ?></b> :</td> <td colspan="1" class="kcol-mid kcommenttime-field"><?php echo KunenaDate::getInstance($comment->time)->toKunena(); ?></td> <td colspan="3" class="kcol-mid kcomment-field"><?php echo KunenaHtmlParser::parseText ($comment->comment); ?></td> </tr> <?php endforeach; ?> <?php endforeach; ?> <?php else : ?> <tr class="krow1"> <td colspan="6" class="kcol-first"><?php echo JText::sprintf('COM_KUNENA_BAN_USER_NOHISTORY', $this->escape($this->profile->name)); ?></td> </tr> <?php endif; ?> </tbody> </table> </div> </div> </div>