Current File : /home/pacjaorg/wpt.pacja.org/cop/templates/eventus2/features/logo.php |
<?php
/**
* @package Helix Ultimate Framework
* @author JoomShaper https://www.joomshaper.com
* @copyright Copyright (c) 2010 - 2018 JoomShaper
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
*/
defined('_JEXEC') or die();
class HelixUltimateFeatureLogo
{
private $params;
public function __construct($params)
{
$this->params = $params;
$this->position = 'logo';
}
public function renderFeature()
{
$template_name = JFactory::getApplication()->getTemplate();
$menu_type = $this->params->get('menu_type');
$offcanvs_position = $this->params->get('offcanvas_position', 'right');
$doc = \JFactory::getDocument();
$presetVars = (array) json_decode($this->params->get('preset'));
$preset = (isset($presetVars['preset']) && $presetVars['preset']) ? $presetVars['preset'] : 'default';
if ($this->params->get('logo_type') == 'image') {
if ($this->params->get('logo_image'))
{
$path = \JPATH_ROOT . '/' . $this->params->get('logo_image');
}
else
{
$path = \JPATH_ROOT . '/templates/' . $template_name . '/images/presets/' . $preset . '/logo.png';
}
}
$html = '';
if ($offcanvs_position == 'left')
{
if ($menu_type == 'mega')
{
$html .= '<a id="offcanvas-toggler" aria-label="'. JText::_('HELIX_ULTIMATE_NAVIGATION') .'" class="offcanvas-toggler-left d-block d-lg-none" href="#"><span class="fa fa-bars" aria-hidden="true" title="'. JText::_('HELIX_ULTIMATE_NAVIGATION') .'"></span></a>';
}
else
{
$html .= '<a id="offcanvas-toggler" aria-label="'. JText::_('HELIX_ULTIMATE_NAVIGATION') .'" class="offcanvas-toggler-left" href="#"><span class="fa fa-bars" aria-hidden="true" title="'. JText::_('HELIX_ULTIMATE_NAVIGATION') .'"></span></a>';
}
}
$custom_logo_class = '';
$sitename = \JFactory::getApplication()->get('sitename');
if ($this->params->get('mobile_logo'))
{
$custom_logo_class = ' d-none d-lg-inline-block';
}
if ($this->params->get('logo_type') == 'image')
{
if ($this->params->get('logo_image'))
{
$html .= '<div class="logo">';
$html .= '<a href="' . \JURI::base(true) . '/">';
$html .= '<img class="logo-image' . $custom_logo_class . '" src="' . $this->params->get('logo_image') . '" alt="' . $sitename . '">';
if ($this->params->get('mobile_logo'))
{
$html .= '<img class="logo-image-phone d-inline-block d-lg-none" src="' . $this->params->get('mobile_logo') . '" alt="' . $sitename . '">';
}
$html .= '</a>';
$html .= '</div>';
}
else
{
$html .= '<div class="logo">';
$html .= '<a href="' . \JURI::base(true) . '/">';
$html .= '<img class="logo-image' . $custom_logo_class . '" src="' . JURI::base(true) . '/templates/' . $template_name . '/images/presets/' . $preset . '/logo.png" alt="' . $sitename . '">';
if ($this->params->get('mobile_logo'))
{
$html .= '<img class="logo-image-phone d-inline-block d-lg-none" src="' . $this->params->get('mobile_logo') . '" alt="' . $sitename . '">';
}
$html .= '</a>';
$html .= '</div>';
}
if($logo_height = $this->params->get('logo_height'))
{
$doc->addStyledeclaration('.logo-image {height:' . $logo_height. 'px;}');
}
}
else
{
if ($this->params->get('logo_text'))
{
$html .= '<span class="logo"><a href="' . \JURI::base(true) . '/">' . $this->params->get('logo_text') . '</a></span>';
}
else
{
$html .= '<span class="logo"><a href="' . \JURI::base(true) . '/">' . $sitename . '</a></span>';
}
if ($this->params->get('logo_slogan'))
{
$html .= '<span class="logo-slogan">' . $this->params->get('logo_slogan') . '</span>';
}
}
return $html;
}
}