|
Server : Apache System : Linux vps.urbanovitalino.adv.br 3.10.0-1062.12.1.el7.x86_64 #1 SMP Tue Feb 4 23:02:59 UTC 2020 x86_64 User : urbanovitalinoad ( 1001) PHP Version : 7.3.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/urbanovitalinoad/public_html/enel/modules/mod_jevents_latest/ |
Upload File : |
<?php
/**
* JEvents Component for Joomla! 3.x
*
* @version $Id: helper.php 3418 2012-03-26 10:26:46Z geraintedwards $
* @package JEvents
* @subpackage Module JEvents Calendar
* @copyright Copyright (C) 2006-2008 JEvents Project Group
* @license GNU/GPLv2, see http://www.gnu.org/licenses/gpl-2.0.html
* @link http://joomlacode.org/gf/project/jevents
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
use Joomla\String\StringHelper;
class modJeventsLatestHelper
{
public function __construct(){
// setup for all required function and classes
$file = JPATH_SITE . '/components/com_jevents/mod.defines.php';
if (file_exists($file) ) {
include_once($file);
include_once(JPATH_SITE . "/components/com_jevents/libraries/modfunctions.php");
} else {
die (JText::_('JEV_LATEST_NEEDS_COMPONENT'));
}
// load language constants
JEVHelper::loadLanguage('modlatest');
}
function getViewClass($theme, $module, $layout, $params=false){
// If we have a specified over ride then use it here
if ($params && JString::strlen($params->get("layout",""))>0){
$speciallayout = strtolower($params->get("layout",""));
// Build the template and base path for the layout
$tPath = JPATH_SITE.'/'.'templates'.'/'.JFactory::getApplication()->getTemplate().'/'.'html'.'/'.$module.'/'.$theme.'/'.$speciallayout.'.php';
// If the template has a layout override use it
if (file_exists($tPath)) {
$viewclass = "Override".ucfirst($theme)."ModLatestView".ucfirst($speciallayout);
require_once($tPath);
if (class_exists($viewclass)){
return $viewclass;
}
}
}
if ($layout=="" || $layout=="global"){
$layout=JEV_CommonFunctions::getJEventsViewName();;
}
// Build the template and base path for the layout
$tPath = JPATH_SITE.'/'.'templates'.'/'.JFactory::getApplication()->getTemplate().'/'.'html'.'/'.$module.'/'.$layout.'.php';
$bPath = JPATH_SITE.'/'.'modules'.'/'.$module.'/'.'tmpl'.'/'.$layout.'.php';
jimport('joomla.filesystem.file');
// If the template has a layout override use it
if (JFile::exists($tPath)) {
require_once($tPath);
$viewclass = "Override".ucfirst($theme)."ModLatestView";
if (class_exists($viewclass)){
return $viewclass;
}
else {
// fall back to badly declared template override!
$viewclass = ucfirst($theme)."ModLatestView";
if (class_exists($viewclass)){
return $viewclass;
}
}
}
if (JFile::exists($bPath)) {
require_once($bPath);
$viewclass = ucfirst($theme)."ModLatestView";
return $viewclass;
}
else {
echo "<strong>".JText::sprintf("JEV_PLEASE_REINSTALL_LAYOUT",$theme)."</strong>";
$bPath = JPATH_SITE.'/'.'modules'.'/'.$module.'/'.'tmpl'.'/'.'default'.'/'.'latest.php';
require_once($bPath);
$viewclass = "DefaultModLatestView";
return $viewclass;
}
}
}