| Current Path : /home/lejardintz/www/plugins/kunena/community/ |
| Current File : /home/lejardintz/www/plugins/kunena/community/profile.php |
<?php
/**
* Kunena Plugin
* @package Kunena.Plugins
* @subpackage Community
*
* @copyright (C) 2008 - 2016 Kunena Team. All rights reserved.
* @copyright (C) 2013 - 2014 iJoomla, Inc. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined ( '_JEXEC' ) or die ();
class KunenaProfileCommunity extends KunenaProfile {
protected $params = null;
public function __construct($params) {
$this->params = $params;
}
public function getUserListURL($action='', $xhtml = true) {
$config = KunenaFactory::getConfig ();
$my = JFactory::getUser();
if ( $config->userlist_allowed == 1 && $my->id == 0 ) return false;
return CRoute::_('index.php?option=com_community&view=search&task=browse', $xhtml);
}
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);
}
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 );
$top = (array) $db->loadObjectList ();
KunenaError::checkDatabaseError();
return $top;
}
public function showProfile($view, &$params) {}
public function getEditProfileURL($userid, $xhtml = true) {
return $this->getProfileURL($userid, 'edit', $xhtml);
}
}