| 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/crypsis/layouts/message/item/actions/ |
Upload File : |
<?php
/**
* Kunena Component
* @package Kunena.Template.Crypsis
* @subpackage Layout.Message
*
* @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;
$config = KunenaConfig::getInstance();
$this->ktemplate = KunenaFactory::getTemplate();
$fullactions = $this->ktemplate->params->get('fullactions');
$quick = $this->ktemplate->params->get('quick');
?>
<?php if (!$fullactions) : ?>
<?php if (empty($this->message_closed)) : ?>
<div class="kmessagepadding">
<?php if($this->quickreply && $quick != 2) : ?>
<a id="btn_qreply" href="#kreply<?php echo $this->message->displayField('id'); ?>_form" role="button" class="btn openmodal"
data-toggle="modal" data-target="#kreply<?php echo $this->message->displayField('id'); ?>_form" rel="nofollow">
<?php echo KunenaIcons::undo() . ' ' . JText::_('COM_KUNENA_MESSAGE_ACTIONS_LABEL_QUICK_REPLY'); ?>
</a>
<?php endif; ?>
<?php echo $this->messageButtons->get('reply'); ?>
<?php echo $this->messageButtons->get('quote'); ?>
<?php echo $this->messageButtons->get('edit'); ?>
<?php if ($this->message->isAuthorised('delete')) : ?>
<?php echo $this->messageButtons->get('delete'); ?>
<?php endif; ?>
<?php echo $this->messageButtons->get('thankyou'); ?>
<?php echo $this->messageButtons->get('unthankyou'); ?>
<?php if ($this->messageButtons->get('moderate')) : ?>
<br />
<br />
<?php echo $this->messageButtons->get('moderate'); ?>
<?php echo $this->messageButtons->get('undelete'); ?>
<?php echo $this->messageButtons->get('permdelete'); ?>
<?php echo $this->messageButtons->get('publish'); ?>
<?php echo $this->messageButtons->get('spam'); ?>
<?php endif; ?>
</div>
<?php else : ?>
<div class="kreplymessage">
<?php echo $this->message_closed; ?>
</div>
<?php endif;
endif; ?>
<?php if ($fullactions) : ?>
<?php if (empty($this->message_closed)) : ?>
<div class="btn-toolbar btn-marging kmessagepadding">
<?php if($this->quickreply && $quick != 2) : ?>
<a id="btn_qreply" href="#kreply<?php echo $this->message->displayField('id'); ?>_form" role="button" class="btn openmodal"
data-toggle="modal" rel="nofollow">
<?php echo KunenaIcons::undo() . ' ' . JText::_('COM_KUNENA_MESSAGE_ACTIONS_LABEL_QUICK_REPLY'); ?>
</a>
<?php endif; ?>
<div class="btn-group">
<button class="btn" data-toggle="dropdown">
<?php echo KunenaIcons::edit() . ' ' . JText::_('COM_KUNENA_MESSAGE_ACTIONS_LABEL_ACTION'); ?>
</button>
<button class="btn dropdown-toggle" data-toggle="dropdown">
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li><?php echo $this->messageButtons->get('reply'); ?></li>
<li><?php echo $this->messageButtons->get('quote'); ?></li>
<li><?php echo $this->messageButtons->get('edit'); ?></li>
<?php if ($config->userdeletetmessage > 0) : ?>
<li><?php echo $this->messageButtons->get('delete'); ?></li>
<?php endif; ?>
</ul>
</div>
<?php if ($this->messageButtons->get('moderate')) : ?>
<div class="btn-group">
<button class="btn" data-toggle="dropdown">
<?php echo KunenaIcons::shuffle() . ' ' . JText::_('COM_KUNENA_MESSAGE_ACTIONS_LABEL_MODERATE'); ?>
</button>
<button class="btn dropdown-toggle" data-toggle="dropdown">
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li><?php echo $this->messageButtons->get('moderate'); ?></li>
<li><?php echo $this->messageButtons->get('delete'); ?></li>
<li><?php echo $this->messageButtons->get('undelete'); ?></li>
<li><?php echo $this->messageButtons->get('permdelete'); ?></li>
<li><?php echo $this->messageButtons->get('publish'); ?></li>
<li><?php echo $this->messageButtons->get('spam'); ?></li>
</ul>
</div>
<?php endif; ?>
<?php echo $this->messageButtons->get('thankyou'); ?>
<?php echo $this->messageButtons->get('unthankyou'); ?>
</div>
<?php else : ?>
<div class="kreplymessage">
<?php echo $this->message_closed; ?>
</div>
<?php endif;
endif; ?>