primo commit
This commit is contained in:
29
modules/mod_jem_wide/tmpl/responsive/default.php
Normal file
29
modules/mod_jem_wide/tmpl/responsive/default.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/**
|
||||
* @package JEM
|
||||
* @subpackage JEM Wide Module
|
||||
* @copyright (C) 2013-2024 joomlaeventmanager.net
|
||||
* @copyright (C) 2005-2009 Christoph Lukes
|
||||
* @license https://www.gnu.org/licenses/gpl-3.0 GNU/GPL
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Uri\Uri;
|
||||
|
||||
$jemsettings = JemHelper::config();
|
||||
|
||||
echo '<div class="jemmodulewide'.$params->get('moduleclass_sfx').'" id="jemmodulewide">';
|
||||
if (count($list)) {
|
||||
if (JemHelper::jemStringContains($params->get('moduleclass_sfx'), 'jem-tablestyle')) {
|
||||
include('default_jem_eventslist_small.php'); // Similar to the old table-layout
|
||||
} else {
|
||||
include("default_jem_eventslist.php"); // The new layout
|
||||
}
|
||||
} else {
|
||||
echo Text::_('MOD_JEM_WIDE_NO_EVENTS');
|
||||
}
|
||||
echo '</div>';
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user