| 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/nice/libraries/CBLib/CB/Legacy/ |
Upload File : |
<?php
/**
* CBLib, Community Builder Library(TM)
* @version $Id: 6/18/14 3:18 PM $
* @copyright (C) 2004-2025 www.joomlapolis.com / Lightning MultiCom SA - and its licensors, all rights reserved
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU/GPL version 2
*/
defined('CBLIB') or die();
/**
* cbPMSHandler Class implementation
* PMS Class for handling the CB PMS api
*/
class cbPMSHandler extends cbTabHandler
{
/**
* Constructor (needed for PHP 7 so that we can keep the old PHP4-type constructor until CB 3.0)
*/
public function __construct()
{
parent::__construct();
}
/**
* Old-fashioned constructor (for UddeIM temporary compatibility:
* @deprecated 2.0 Use parent::__construct();
*/
public function cbPMSHandler()
{
self::__construct();
}
/**
* Sends a PMS message (HTML)
*
* @param int $toUserId UserId of receiver
* @param int $fromUserId UserId of sender
* @param string $subject Subject of PMS message in HTML format
* @param string $message Body of PMS message in HTML format
* @param boolean $systemGenerated False: real user-to-user message; True: system-Generated by an action from user $fromid (if non-null)
* @param string $fromName The name of the public sender
* @param string $fromEmail The email address of the public sender
* @return string|boolean Either string HTML for tab content, or false if ErrorMSG generated
*/
public function sendUserPMS( $toUserId, $fromUserId, $subject, $message, $systemGenerated = false, $fromName = null, $fromEmail = null )
{
}
/**
* returns all the parameters needed for a hyperlink or a menu entry to do a pms action
*
* @param int $toUserId UserId of receiver
* @param int $fromUserId UserId of sender
* @param string $subject Subject of PMS message
* @param string $message Body of PMS message
* @param int $kind kind of link: 1: link to compose new PMS message for $toid user. 2: link to inbox of $fromid user; 3: outbox, 4: trashbox, 5: link to edit pms options
* @return array|boolean Array of string {"caption" => menu-text ,"url" => NON-cbSef relative url-link, "tooltip" => description} or false and errorMSG
*/
public function getPMSlink( $toUserId, $fromUserId, $subject, $message, $kind )
{
}
/**
* gets PMS system capabilities
*
* @return mixed array of string {'subject' => boolean ,'body' => boolean} or false if ErrorMSG generated
*/
public function getPMScapabilites( )
{
}
/**
* gets PMS unread messages count
*
* @param int $userId User id
* @return int|boolean Number of messages unread by user $userid or false if ErrorMSG generated
*/
public function getPMSunreadCount( $userId )
{
}
/**
* gets PMS popover icon
*
* @param int $userId User id
* @return string
*/
public function getPMSicon( $userId )
{
}
}