| Current Path : /home/helpink/www/components/com_jbusinessdirectory/include/profile/ |
| Current File : /home/helpink/www/components/com_jbusinessdirectory/include/profile/profile_cbuilder.php |
<?php
/**
* @package J-BusinessDirectory
*
* @author CMSJunkie http://www.cmsjunkie.com/
* @copyright Copyright (C) 2007 - 2022 CMSJunkie. All rights reserved.
* @license https://www.gnu.org/licenses/agpl-3.0.en.html
*/
defined('_JEXEC') or die('Restricted access');
if (JFile::exists(JPATH_ADMINISTRATOR . '/components/com_comprofiler/plugin.foundation.php')) {
require_once(JPATH_ADMINISTRATOR . '/components/com_comprofiler/plugin.foundation.php');
$userId = isset($this->company->userId)?$this->company->userId:JBusinessUtil::getUser()->id;
$cbUser = CBuser::getInstance($userId);
$avatarUrl = "";
if ($cbUser) {
$avatarUrl = $cbUser->getField('avatar', null, 'csv', 'none', 'list');
$xhtml ='';
$link = JRoute::_("index.php?option=com_comprofiler&task=userProfile&user=".$userId, -1);
}
$name = $cbUser->getField('firstname')." ".$cbUser->getField('lastname'); ?>
<div class="jbd-user-profile jomsocial">
<div class="jbd-user-image">
<img src="<?php echo $avatarUrl?> "/>
</div>
<div class="jbd-user-info">
<div class="user-name"><?php echo $name ; ?></div>
<a target="_blank" href="<?php echo $link?>"><?php echo JText::_("LNG_USER_PROFILE")?></a>
</div>
</div>
<?php
} else { ?>
<div>CB not installed!!</div>
<?php } ?>