| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/blog/components/com_kunena/template/crypsisb3/layouts/topic/item/actions/ |
Upload File : |
<?php
/**
* Kunena Component
* @package Kunena.Template.Crypsis
* @subpackage Layout.Topic
*
* @copyright (C) 2008 - 2018 Kunena Team. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined('_JEXEC') or die;
$this->ktemplate = KunenaFactory::getTemplate();
$fullactions = $this->ktemplate->params->get('fullactions');
?>
<?php if (!$fullactions) : ?>
<div class="clearfix"></div>
<div id="topic-actions">
<?php if ($this->topicButtons->get('reply')
|| $this->topicButtons->get('subscribe')
|| $this->topicButtons->get('favorite')
) : ?>
<?php echo $this->topicButtons->get('reply') ?>
<?php echo $this->topicButtons->get('subscribe') ?>
<?php echo $this->topicButtons->get('favorite') ?>
<?php endif ?>
<?php if ($this->topicButtons->get('delete')
|| $this->topicButtons->get('permdelete')
|| $this->topicButtons->get('undelete')
|| $this->topicButtons->get('moderate')
|| $this->topicButtons->get('sticky')
|| $this->topicButtons->get('lock')
) : ?>
<div class="btn-group">
<a class="btn btn-primary" data-toggle="dropdown"><?php echo KunenaIcons::shuffle();?> <?php echo JText::_('COM_KUNENA_TOPIC_ACTIONS_LABEL_MODERATION') ?></a>
<a class="btn btn-primary dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></a>
<ul class="dropdown-menu">
<li><?php echo $this->topicButtons->get('delete') ?></li>
<li><?php echo $this->topicButtons->get('permdelete') ?></li>
<li><?php echo $this->topicButtons->get('undelete') ?></li>
<li><?php echo $this->topicButtons->get('moderate') ?></li>
<li><?php echo $this->topicButtons->get('sticky') ?></li>
<li><?php echo $this->topicButtons->get('lock') ?></li>
</ul>
</div>
<?php endif ?>
</div>
<?php endif; ?>
<?php if ($fullactions) : ?>
<div class="clearfix"></div>
<div class="btn-toolbar btn-marging kmessagepadding" id="topic-actions">
<div>
<?php if ($this->topicButtons->get('reply')
|| $this->topicButtons->get('subscribe')
|| $this->topicButtons->get('favorite')
) : ?>
<div class="btn-group">
<a class="btn btn-default" data-toggle="dropdown"><?php echo KunenaIcons::pencil();?> <?php echo JText::_('COM_KUNENA_TOPIC_ACTIONS_LABEL_ACTION') ?></a>
<a class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></a>
<ul class="dropdown-menu">
<li><?php echo $this->topicButtons->get('reply') ?></li>
<li><?php echo $this->topicButtons->get('subscribe') ?></li>
<li><?php echo $this->topicButtons->get('favorite') ?></li>
</ul>
</div>
<?php endif ?>
<?php if ($this->topicButtons->get('delete')
|| $this->topicButtons->get('permdelete')
|| $this->topicButtons->get('undelete')
|| $this->topicButtons->get('moderate')
|| $this->topicButtons->get('sticky')
|| $this->topicButtons->get('lock')
) : ?>
<div class="btn-group">
<a class="btn btn-primary" data-toggle="dropdown"><?php echo KunenaIcons::shuffle();?> <?php echo JText::_('COM_KUNENA_TOPIC_ACTIONS_LABEL_MODERATION') ?></a>
<a class="btn btn-primary dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></a>
<ul class="dropdown-menu">
<li><?php echo $this->topicButtons->get('delete') ?></li>
<li><?php echo $this->topicButtons->get('permdelete') ?></li>
<li><?php echo $this->topicButtons->get('undelete') ?></li>
<li><?php echo $this->topicButtons->get('moderate') ?></li>
<li><?php echo $this->topicButtons->get('sticky') ?></li>
<li><?php echo $this->topicButtons->get('lock') ?></li>
</ul>
</div>
<?php endif ?>
</div>
</div>
<?php endif ?>