예제 #1
0
			<?php echo JHtml::_('link', JRoute::_($row->linktarget), $this->escape($row->catname)); ?>
		</h2>

		<div class="floattext">
			<?php if ($this->jemsettings->discatheader) { ?>
				<div class="catimg">
					<?php // flyer
						if (empty($row->image)) {
							$jemsettings = JemHelper::config();
							$imgattribs['width'] = $jemsettings->imagewidth;
							$imgattribs['height'] = $jemsettings->imagehight;

							echo JHtml::_('image', 'com_jem/noimage.png', $row->catname, $imgattribs, true);
						} else {
							$cimage = JemImage::flyercreator($row->image, 'category');
							echo JemOutput::flyer($row, $cimage, 'category');
						}
					?>
				</div>
			<?php } ?>
			<div class="description cat<?php echo $row->id; ?>">
				<?php echo $row->description; ?>
				<p>
					<?php echo JHtml::_('link', JRoute::_($row->linktarget), $row->linktext); ?>
					(<?php echo $row->assignedevents ? $row->assignedevents : '0'; ?>)
				</p>
			</div>
		</div>

		<?php if ($i = count($row->subcats)) : ?>
			<div class="subcategories">
예제 #2
0
			<tr align="center"><td colspan="20"><?php echo JText::_('COM_JEM_NO_EVENTS'); ?></td></tr>
		<?php else : ?>
			<?php $this->rows = $this->getRows(); ?>
			<?php foreach ($this->rows as $row) : ?>
				<?php if (!empty($row->featured)) :   ?>
				<tr class="featured featured<?php echo $row->id.$this->params->get('pageclass_sfx'); ?>" itemscope="itemscope" itemtype="http://schema.org/Event" >
				<?php else : ?>
				<tr class="sectiontableentry<?php echo ($row->odd +1) . $this->params->get('pageclass_sfx'); ?>" itemscope="itemscope" itemtype="http://schema.org/Event" >
				<?php endif; ?>

				<?php if ($this->jemsettings->showeventimage == 1) : ?>
					<td headers="jem_eventimage" align="left" valign="top">
						<?php if (!empty($row->datimage)) : ?>
							<?php
							$dimage = JemImage::flyercreator($row->datimage, 'event');
							echo JemOutput::flyer($row, $dimage, 'event');
							?>
						<?php endif; ?>
					</td>
				<?php endif; ?>

				<td headers="jem_date" align="left">
					<?php
						echo JemOutput::formatShortDateTime($row->dates, $row->times,
							$row->enddates, $row->endtimes);
						echo JemOutput::formatSchemaOrgDateTime($row->dates, $row->times,
							$row->enddates, $row->endtimes);
					?>
				</td>

				<?php if (($this->jemsettings->showtitle == 1) && ($this->jemsettings->showdetails == 1)) : ?>
예제 #3
0
	</div>

	<?php if ($this->params->get('show_page_heading', 1)) : ?>
	<h1 class='componentheading'>
		<span itemprop="name"><?php echo $this->escape($this->params->get('page_heading')); ?></span>
	</h1>
	<?php endif; ?>

	<div class="clr"> </div>

	<!--Venue-->
	<h2 class="jem">
		<?php echo JText::_('COM_JEM_VENUE'); ?>
		<?php echo JemOutput::editbutton($this->venue, $this->params, NULL, $this->permissions->canEditVenue, 'venue'); ?>
	</h2>
	<?php echo JemOutput::flyer($this->venue, $this->limage, 'venue'); ?>

	<?php if (($this->settings->get('global_show_detlinkvenue',1)) && (!empty($this->venue->url))) : ?>
		<dl class="location">
			<dt class="venue"><?php echo JText::_('COM_JEM_WEBSITE').':'; ?></dt>
			<dd class="venue">
				<a href="<?php echo $this->venue->url; ?>" target="_blank"><?php echo $this->venue->urlclean; ?></a>
			</dd>
		</dl>
	<?php endif; ?>

	<?php if ($this->settings->get('global_show_detailsadress',1)) : ?>
		<dl class="location floattext" itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
			<?php if ($this->venue->street) : ?>
			<dt class="venue_street"><?php echo JText::_('COM_JEM_STREET').':'; ?></dt>
			<dd class="venue_street" itemprop="streetAddress">
예제 #4
0
		<?php echo $this->escape($this->params->get('page_heading')); ?>
	</h1>
	<?php endif; ?>

	<div class="clr"> </div>

	<!--Venue-->

	<?php foreach($this->rows as $row) : ?>
		<div itemscope itemtype="http://schema.org/Place">
			<h2 class="jem">
				<a href="<?php echo $row->linkEventsPublished; ?>" itemprop="url"><span itemprop="name"><?php echo $this->escape($row->venue); ?></span></a>
			</h2>

			<!-- FLYER -->
			<?php echo JemOutput::flyer( $row, $row->limage, 'venue' ); ?>

			<!--  -->
			<dl class="location">
				<?php if (($this->settings->get('global_show_detlinkvenue',1)) && (!empty($row->url))) : ?>
				<dt class="venue_website">
					<?php echo JText::_('COM_JEM_WEBSITE').':'; ?>
				</dt>
				<dd class="venue_website">
					<a href="<?php echo $row->url; ?>" target="_blank"> <?php echo $row->urlclean; ?></a>
				</dd>
				<?php endif; ?>
			</dl>

			<?php if ( $this->settings->get('global_show_detailsadress',1)) : ?>
			<dl class="location floattext" itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
예제 #5
0
파일: default.php 프로젝트: JKoelman/JEM-3
    ?>
	<h2 class="jem">
			<?php 
    echo '&nbsp';
    ?>
	</h2>
		<div class="image imagetop">
		<?php 
    // flyer
    if (empty($this->category->image)) {
        $jemsettings = JEMHelper::config();
        $imgattribs['width'] = $jemsettings->imagewidth;
        $imgattribs['height'] = $jemsettings->imagehight;
        echo JHtml::_('image', 'com_jem/noimage.png', $this->category->catname, $imgattribs, true);
    } else {
        echo JemOutput::flyer($this->category, $this->cimage, 'category');
    }
    ?>
		</div>
		<?php 
}
?>


		<h2 class="description"><?php 
echo JText::_('COM_JEM_EVENT_DESCRIPTION');
?>
</h2>
		<p><?php 
echo $this->description;
?>
예제 #6
0
파일: default.php 프로젝트: JKoelman/JEM-3
			<?php 
        }
        ?>
		</dl>

	<?php 
        if ($this->img_position == 1) {
            ?>
	</div><div class="col-md-5">
<!-- image -->
	<?php 
            if ($this->limage) {
                ?>
		<div class="image imageright">
		<?php 
                echo JemOutput::flyer($this->item, $this->limage, 'venue');
                ?>
	</div>
	<?php 
            }
            ?>
	</div></div></div>
	<?php 
        }
        ?>
			<?php 
        if ($params->get('event_show_mapserv') == 2) {
            ?>
				<?php 
            echo JemOutput::mapicon($this->item, 'event', $params);
            ?>
예제 #7
0
		</div>

		<input type="hidden" name="removeimage" id="removeimage" value="0" />

		<?php 
}
?>


		<?php 
# image output
if ($this->item->datimage) {
    ?>
		<div id="hide_image" class="edit_imageflyer center">
		<?php 
    echo JemOutput::flyer($this->item, $this->dimage, 'event', 'hideimage');
    ?>
		</div>
		<?php 
}
?>

	</fieldset>

<!-- Recurrence -->
<?php 
if (!$this->item->recurrence_groupcheck) {
    ?>
		<fieldset class="form-horizontal">
		<legend><span class="legendcolor"><?php 
    echo JText::_('COM_JEM_EDITEVENT_FIELD_RECURRENCE');