예제 #1
0
		echo JemOutput::createButtonBar($this->getName(), $this->permissions, $btn_params);
		?>
	</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) : ?>
예제 #2
0
파일: default.php 프로젝트: JKoelman/JEM-3
</span>
		</h1>
	</div>
	<?php 
}
?>

<!--Venue-->


	<h2 class="jem">
			<?php 
echo JText::_('COM_JEM_DETAILS');
?>
			<?php 
echo JemOutput::editbutton($this->venue, $this->params, NULL, $this->allowedtoeditvenue, 'venue');
?>
	</h2>

	<?php 
if ($this->limage) {
    ?>
		<div class="image imagetop"><?php 
    echo JemOutput::flyer($this->venue, $this->limage, 'venue');
    ?>
</div>
	<?php 
}
?>

	<div class="container-fluid">
예제 #3
0
파일: default.php 프로젝트: JKoelman/JEM-3
    ?>
	<?php 
    echo $this->loadTemplate('attachments');
    ?>
	<!--  	Venue  -->
	<?php 
    if ($this->item->locid != 0) {
        ?>
	<p></p>

		<div>
		<h2 class="location">
			<?php 
        echo JText::_('COM_JEM_VENUE');
        $itemid = $this->item ? $this->item->id : 0;
        echo JemOutput::editbutton($this->item, $params, $attribs, $this->allowedtoeditvenue, 'editvenue');
        ?>
		</h2>

<!-- image -->
		<?php 
        if ($this->img_position == 0) {
            ?>
			<?php 
            if ($this->limage) {
                ?>
			<div class="image imagetop">
				<?php 
                echo JemOutput::flyer($this->item, $this->limage, 'venue');
                ?>
			</div>
예제 #4
0
        if ($this->jemsettings->showatte == 1) {
            ?>
					<td class="jem_attendees center">
						<?php 
            echo !empty($row->regCount) ? $this->escape($row->regCount) : '-';
            ?>
					</td>
				<?php 
        }
        ?>
				<?php 
        if ($admin && !$print) {
            ?>
					<td class="jem_edit center">
						<?php 
            echo JemOutput::editbutton($row, $params, $attribs, true, 'eventslist');
            ?>
					</td>
				<?php 
        }
        ?>
				</tr>
			<?php 
    }
    ?>
		<?php 
}
?>
	</tbody>
</table>
예제 #5
0
	<?php endif ?>

	<?php $this->attachments = $this->item->attachments; ?>
	<?php echo $this->loadTemplate('attachments'); ?>

	<!--  	Venue  -->
	<?php if ($this->item->locid != 0) : ?>
	<p></p>
	<hr>

	<div itemprop="location" itemscope="itemscope" itemtype="http://schema.org/Place">
		<h2 class="location">
			<?php
			echo JText::_('COM_JEM_VENUE') ;
			$itemid = $this->item ? $this->item->id : 0 ;
			echo JemOutput::editbutton($this->item, $params, $attribs, $this->permissions->canEditVenue, 'editvenue');
			?>
		</h2>
		<?php echo JemOutput::flyer($this->item, $this->limage, 'venue'); ?>

		<dl class="location">
			<dt class="venue"><?php echo JText::_('COM_JEM_LOCATION'); ?>:</dt>
			<dd class="venue">
				<?php
				echo '<a href="' . JRoute::_(JemHelperRoute::getVenueRoute($this->item->venueslug)) . '">' . $this->escape($this->item->venue) . '</a>';
				if (!empty($this->item->url)) :
					echo '&nbsp;-&nbsp;<a target="_blank" href="' . $this->item->url . '">' . JText::_('COM_JEM_WEBSITE') . '</a>';
				endif;
				?>
			</dd>
		</dl>