primo commit

This commit is contained in:
2024-12-17 17:34:10 +01:00
commit e650f8df99
16435 changed files with 2451012 additions and 0 deletions

View File

@ -0,0 +1,96 @@
<?php
/**
* @version 2.3.6
* @package JEM
* @subpackage JEM Wide Module
* @copyright (C) 2013-2020 joomlaeventmanager.net
* @copyright (C) 2005-2009 Christoph Lukes
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
defined('_JEXEC') or die;
JHtml::_('behavior.modal', 'a.flyermodal');
?>
<div class="jemmodulewide<?php echo $params->get('moduleclass_sfx')?>" id="jemmodulewide">
<?php if (count($list)) : ?>
<table class="eventset" summary="mod_jem_wide">
<colgroup>
<col width="30%" class="jemmodw_col_title" />
<col width="20%" class="jemmodw_col_category" />
<col width="20%" class="jemmodw_col_venue" />
<col width="15%" class="jemmodw_col_eventimage" />
<col width="15%" class="jemmodw_col_venueimage" />
</colgroup>
<?php foreach ($list as $item) : ?>
<tr>
<td valign="top">
<?php if ($item->eventlink) : ?>
<span class="event-title">
<a href="<?php echo $item->eventlink; ?>" title="<?php echo $item->fulltitle; ?>"><?php echo $item->title; ?></a>
</span>
<?php else : ?>
<span class="event-title">
<?php echo $item->title; ?>
</span>
<?php endif; ?>
<br />
<span class="date" title="<?php echo strip_tags($item->dateinfo); ?>"><?php echo $item->date; ?></span>
<?php
if ($item->time && $params->get('datemethod', 1) == 1) :
?>
<span class="time" title="<?php echo strip_tags($item->dateinfo); ?>"><?php echo $item->time; ?></span>
<?php endif; ?>
</td>
<td>
<?php if (!empty($item->catname)) : ?>
<span class="category"><?php echo $item->catname; ?></span>
<?php endif; ?>
</td>
<td>
<?php if (!empty($item->venue)) : ?>
<?php if ($item->venuelink) : ?>
<span class="venue-title"><a href="<?php echo $item->venuelink; ?>" title="<?php echo $item->venue; ?>"><?php echo $item->venue; ?></a></span>
<?php else : ?>
<span class="venue-title"><?php echo $item->venue; ?></span>
<?php endif; ?>
<?php endif; ?>
</td>
<td align="center" class="event-image-cell">
<?php if ($params->get('use_modal')) : ?>
<?php if ($item->eventimageorig) {
$image = $item->eventimageorig;
} else {
$image = '';
} ?>
<a href="<?php echo $image; ?>" class="flyermodal" title="<?php echo $item->title; ?>">
<?php endif; ?>
<img src="<?php echo $item->eventimage; ?>" alt="<?php echo $item->title; ?>" class="image-preview" />
<?php if ($item->eventlink) : ?>
</a>
<?php endif; ?>
</td>
<td align="center" class="event-image-cell">
<?php if ($params->get('use_modal')) : ?>
<a href="<?php echo $item->venueimageorig; ?>" class="flyermodal" title="<?php echo $item->venue; ?>">
<?php endif; ?>
<img src="<?php echo $item->venueimage; ?>" alt="<?php echo $item->venue; ?>" class="image-preview" />
<?php if ($item->venuelink) : ?>
</a>
<?php endif; ?>
</td>
</tr>
<?php endforeach; ?>
</table>
<?php else : ?>
<?php echo JText::_('MOD_JEM_WIDE_NO_EVENTS'); ?>
<?php endif; ?>
</div>

View File

@ -0,0 +1,65 @@
/**
* @version 2.3.6
* @package JEM
* @subpackage JEM Latest Events Wide Module
* @copyright (C) 2013-2020 joomlaeventmanager.net
* @copyright (C) 2005-2009 Christoph Lukes
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
div#jemmodulewide {
width: 100%;
}
div#jemmodulewide .eventset {
width: 100%;
margin-bottom: 10px;
padding: 5px;
border-bottom: 1px dotted silver;
}
div#jemmodulewide span.event-title {
padding-left: 20px;
background: url(../img/flag_red.png) no-repeat;
/*font-size: smaller;*/
}
div#jemmodulewide span.time {
padding-left: 20px;
background: url(../img/time.png) no-repeat;
padding-top: 2px;
}
div#jemmodulewide span.date {
padding-left: 20px;
background: url(../img/date.png) no-repeat;
padding-top: 2px;
}
div#jemmodulewide span.category {
position: relative;
padding-left: 20px;
background: url(../img/category.png) no-repeat;
/*font-size: smaller;*/
}
div#jemmodulewide span.venue-title {
position: relative;
padding-left: 20px;
background: url(../img/venue.png) no-repeat;
/*font-size: smaller;*/
}
div#jemmodulewide .event-image-cell {
}
div#jemmodulewide .venue-image-cell {
}
div#jemmodulewide .image-preview {
height: 35px;
border: 1px solid #CCCCCC;
padding: 3px;
background-color: white;
margin: 3px;
}

View File

@ -0,0 +1,10 @@
/**
* @version 2.3.6
* @package JEM
* @subpackage JEM Latest Events Wide Module
* @copyright (C) 2013-2020 joomlaeventmanager.net
* @copyright (C) 2005-2009 Christoph Lukes
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
/* This template uses images in any case, so keep this empty file to prevent legacy fallback. */

View File

@ -0,0 +1,10 @@
/**
* @version 2.3.6
* @package JEM
* @subpackage JEM Latest Events Wide Module
* @copyright (C) 2013-2020 joomlaeventmanager.net
* @copyright (C) 2005-2009 Christoph Lukes
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
/* This template uses images in any case, so keep this empty file to prevent legacy fallback. */