Your IP : 216.73.217.13


Current Path : /home/poneycluc/www/plugins/system/t4/src/t4/Helper/
Upload File :
Current File : /home/poneycluc/www/plugins/system/t4/src/t4/Helper/Author.php

<?php
namespace T4\Helper;

use Joomla\CMS\Factory;
use Joomla\CMS\Layout\LayoutHelper;
use Joomla\CMS\MVC\Model\BaseDatabaseModel;
use Joomla\CMS\Uri\Uri;
use Joomla\Registry\Registry;

class Author {
	public static function render($item, $params, $displayType,$templateParams) {
		$paramsTemp = self::getTypeListSiteConfig();

		if($params->get('show_author') && $paramsTemp->get('author_position','') == $displayType){
			$model = BaseDatabaseModel::getInstance('Author', 'ContentModel', array('ignore_request' => true));
			$author = $model->getAuthor($item->created_by);

			return LayoutHelper::render('t4.content.author_info', ["author"=> $author,'link' =>true,'class'=>'author-block-post-detail pos_'.$displayType]);
		}
		return "";
	}

	public static function authorInfo($items){
		$params = self::getTypeListSiteConfig();
		$model = BaseDatabaseModel::getInstance('Author', 'ContentModel', array('ignore_request' => true));
		$author = $model->getAuthor($items->created_by);

		if (!$author) {
			return null;
		}

		if ($params->get('author_link','') != 1){
			$author->link = (isset($items->contact_link) && $items->params->get('link_author') == true) ? $items->contact_link : '';
		}
		if ($params->get('author_show_avatar','')){
			$proParams = $author->profile;
			if(!empty($proParams->get('user_avatar'))){
				$avatar = Uri::base(). $proParams->get('user_avatar');
			}else{
				if(file_exists(JPATH_ROOT . "/media/t4/author/default.jpg")){
					$avatar = Uri::base().'/media/t4/author/default.jpg';
				}else {
					$avatar = "//www.gravatar.com/avatar";
				}
			}
			$author->author_avatar = $avatar;
		}
		return $author;
	}

	public static function getTypeListSiteConfig(){
		$templateParams = Factory::getApplication()->getTemplate('site')->params; 
		$siteConfig = Path::getFileContent('etc/site/' . $templateParams->get('typelist-site') . '.json');
		if(!$siteConfig){
			$siteConfig = Path::getFileContent('etc/site/default.json');
		}
		$params = new Registry(json_decode($siteConfig,true));
		return $params;
	}
}