| 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/bordeaux/libraries/kunena/src/KunenaPrivate/Message/ |
Upload File : |
<?php
/**
* Kunena Component
*
* @package Kunena.Framework
* @subpackage Private
*
* @Copyright (C) 2008 - @currentyear@ Kunena Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link http://www.kunena.org
**/
namespace Kunena\Forum\Libraries\KunenaPrivate\Message;
\defined('_JEXEC') or die();
use Kunena\Forum\Libraries\Database\KunenaDatabaseObject;
/**
* Private message mapping to forum message.
*
* @property int $message_id
* @property int $private_id
* @since Kunena 6.0
*/
class KunenaPost extends KunenaDatabaseObject
{
/**
* @var string
* @since Kunena 6.0
*/
protected $_table = 'KunenaPrivatePostMap';
/**
* Get the table relevant properties. Override for your specific Object
*
* @return array Assocative array with the propertie values of table
*
* @since Kunena 6.4
*/
protected function getTableProperties(): array
{
$properties = [
'private_id' => $this->private_id,
'message_id' => $this->message_id
];
return $properties;
}
}