| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.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 : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/components/com_kunena/src/Layout/Message/ |
Upload File : |
<?php
/**
* Kunena Component
*
* @package Kunena.Site
* @subpackage Layout.Topic
*
* @copyright Copyright (C) 2008 - 2025 Kunena Team. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
namespace Kunena\Forum\Site\Layout\Message;
\defined('_JEXEC') or die;
use Kunena\Forum\Libraries\Layout\KunenaLayout;
/**
* KunenaLayoutMessageList
*
* @since Kunena 6.2
*/
class MessageItem extends KunenaLayout
{
public $profile;
public $reportMessageLink;
public $category;
public $ipLink;
public $location;
public $headerText;
public $pagination;
public $user;
public $output;
public $config;
public $message;
public $topic;
public $detail;
public $ktemplate;
public $candisplaymail;
public $captchaEnabled;
public $thankyou;
public $total_thankyou;
public $more_thankyou;
public $thankyou_delete;
public $numLink;
/**
* Check if the guest, moderator or registred can see attachments
*
*
* @since Kunena 6.4.3
*/
public function canSeeAttachments($attachments, $attachs, $topic) {
if (!$this->me->exists()) {
if ($attachs->totalPrivate == count($attachments)) {
return false;
}
} elseif ($this->me->isModerator($topic->getCategory())) {
if ($attachs->totalPrivate == count($attachments)) {
return true;
}
} else {
if ($attachs->inline != count($attachments) && $attachs->totalPrivate != count($attachments)) {
return true;
}
}
return false;
}
}