File: /home/confeduphaar/backip-old-files/components/com_jevents/views/flat/abstract/abstract.php
<?php
/**
* JEvents Component for Joomla! 3.x
*
* @version $Id: abstract.php 1440 2009-05-11 08:22:54Z geraint $
* @package JEvents
* @copyright Copyright (C) 2008-2020 GWESystems Ltd
* @license GNU/GPLv2, see http://www.gnu.org/licenses/gpl-2.0.html
* @link http://www.jevents.net
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die();
/**
* HTML Abstract view class for the component frontend
*
* @static
*/
use Joomla\CMS\Factory;
use Joomla\CMS\Uri\Uri;
use Joomla\CMS\Component\ComponentHelper;
JLoader::register('JEventsDefaultView', JEV_VIEWS . "/default/abstract/abstract.php");
class JEventsFlatView extends JEventsDefaultView
{
var
$jevlayout = null;
function __construct($config = null)
{
parent::__construct($config);
$this->jevlayout = "flat";
$this->addHelperPath(dirname(__FILE__) . "/../helpers/");
$this->addHelperPath(JPATH_BASE . '/' . 'templates' . '/' . Factory::getApplication()->getTemplate() . '/' . 'html' . '/' . JEV_COM_COMPONENT . '/' . "helpers");
$document = Factory::getDocument();
$params = ComponentHelper::getParams(JEV_COM_COMPONENT);
JEVHelper::componentStylesheet($this);
if ($params->get("darktemplate", 0))
JEVHelper::componentStylesheet($this, "dark.css");
$stylelink = '<!--[if lte IE 6]>' . "\n";
$stylelink .= '<link rel="stylesheet" href="' . Uri::root() . 'components/com_jevents/views/flat/assets/css/ie6.css" />' . "\n";
$stylelink .= '<![endif]-->' . "\n";
$document->addCustomTag($stylelink);
$this->colourscheme = $params->get("flatcolourscheme", "red");
if ($this->colourscheme == "gray")
{
//$this->colourscheme = "";
}
}
}