| 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/a/w/e/awebpaca/blog/plugins/kunena/community/ |
Upload File : |
<?php
/**
* Kunena Plugin
*
* @package Kunena.Plugins
* @subpackage Community
*
* @copyright (C) 2008 - 2018 Kunena Team. All rights reserved.
* @copyright (C) 2013 - 2014 iJoomla, Inc. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined('_JEXEC') or die();
class KunenaProfileCommunity extends KunenaProfile
{
protected $params = null;
/**
* KunenaProfileCommunity constructor.
*
* @param $params
*/
public function __construct($params)
{
$this->params = $params;
}
/**
* @param string $action
* @param bool $xhtml
*
* @return bool|string
*/
public function getUserListURL($action = '', $xhtml = true)
{
$config = KunenaFactory::getConfig();
$my = JFactory::getUser();
if ($config->userlist_allowed == 0 && $my->id == 0)
{
return false;
}
return CRoute::_('index.php?option=com_community&view=search&task=browse', $xhtml);
}
/**
* @param $userid
* @param string $task
* @param bool $xhtml
*
* @return bool|string
*/
public function getProfileURL($userid, $task = '', $xhtml = true)
{
// Make sure that user profile exist.
if (!$userid || CFactory::getUser($userid) === null)
{
return false;
}
return CRoute::_('index.php?option=com_community&view=profile&userid=' . (int) $userid, $xhtml);
}
/**
* @param int $limit
*
* @return array
*/
public function _getTopHits($limit = 0)
{
$db = JFactory::getDBO();
$query = "SELECT cu.userid AS id, cu.view AS count
FROM #__community_users AS cu
INNER JOIN #__users AS u ON u.id=cu.userid
WHERE cu.view>0
ORDER BY cu.view DESC";
$db->setQuery($query, 0, $limit);
try
{
$top = (array) $db->loadObjectList();
}
catch (RuntimeException $e)
{
KunenaError::displayDatabaseError();
}
return $top;
}
/**
* @param $view
* @param $params
*/
public function showProfile($view, &$params)
{
}
/**
* @param $userid
* @param bool $xhtml
*
* @return bool|string
*/
public function getEditProfileURL($userid, $xhtml = true)
{
return $this->getProfileURL($userid, 'edit', $xhtml);
}
}