Your IP : 216.73.216.85


Current Path : /home/smartconb/www/armencom33/components/com_dpcalendar/views/list/tmpl/
Upload File :
Current File : /home/smartconb/www/armencom33/components/com_dpcalendar/views/list/tmpl/timeline_events.php

<?php
/**
 * @package   DPCalendar
 * @copyright Copyright (C) 2018 Digital Peak GmbH. <https://www.digital-peak.com>
 * @license   https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL
 */

defined('_JEXEC') or die();

use DPCalendar\HTML\Block\Icon;

$this->translator->translateJS('COM_DPCALENDAR_CONFIRM_DELETE');
?>
<div class="com-dpcalendar-timeline__events">
	<div class="com-dpcalendar-timeline__container">
		<?php foreach ($this->events as $event) { ?>
			<?php $startDate = $this->dateHelper->getDate($event->start_date, $event->all_day); ?>
			<?php $this->displayData['event'] = $event; ?>
			<?php $calendar = DPCalendarHelper::getCalendar($event->catid); ?>
			<div class="dp-event dp-event_<?php echo $event->ongoing_start_date ? ($event->ongoing_end_date ? 'started' : 'finished') : 'future'; ?>"
				data-id="<?php echo $event->id; ?>" data-calid="<?php echo $calendar->id; ?>">
				<div class="dp-event__dot">
					<span class="dp-event__dot-date"><?php echo $startDate->format('j M', true); ?></span>
				</div>
				<div class="dp-event__information">
					<?php echo $this->loadTemplate('events_title'); ?>
					<?php if ($this->params->get('list_show_display_events') && $event->displayEvent->afterDisplayTitle) { ?>
						<div class="dp-event__display-after-title"><?php echo $event->displayEvent->afterDisplayTitle; ?></div>
					<?php } ?>
					<?php echo $this->loadTemplate('events_image'); ?>
					<div class="dp-event__details">
						<?php if ($calendar->canEdit || $calendar->canDelete || ($calendar->canEditOwn && $event->created_by == $this->user->id)) { ?>
							<div class="dp-event__actions">
								<?php if ($calendar->canEdit || ($calendar->canEditOwn && $event->created_by == $this->user->id)) { ?>
									<a href="<?php echo $this->router->getEventFormRoute($event->id, $this->returnPage); ?>" class="dp-link"
									aria-label="<?php echo $this->translate('JACTION_EDIT'); ?>">
										<?php echo $this->layoutHelper->renderLayout(
											'block.icon',
											['icon' => Icon::EDIT, 'title' => $this->translate('JACTION_EDIT')]
										); ?>
									</a>
								<?php } ?>
								<?php if ($calendar->canDelete || ($calendar->canEditOwn && $event->created_by == $this->user->id)) { ?>
									<a href="<?php echo $this->router->getEventDeleteRoute($event->id, $this->returnPage); ?>" class="dp-link dp-link_delete"
										aria-label="<?php echo $this->translate('JACTION_DELETE'); ?>">
										<?php echo $this->layoutHelper->renderLayout(
											'block.icon',
											['icon' => Icon::DELETE, 'title' => $this->translate('JACTION_DELETE')]
										); ?>
									</a>
								<?php } ?>
							</div>
						<?php } ?>
						<div class="dp-event__date">
							<?php echo $this->layoutHelper->renderLayout(
								'block.icon',
								['icon' => Icon::CLOCK, 'title' => $this->translate('COM_DPCALENDAR_DATE')]
							); ?>
							<?php echo $this->dateHelper->getDateStringFromEvent(
								$event,
								$this->params->get('event_date_format'),
								$this->params->get('event_time_format')
							); ?>
						</div>
						<?php if ($event->rrule) { ?>
							<div class="dp-event__rrule">
								<?php echo $this->layoutHelper->renderLayout(
									'block.icon',
									['icon'  => Icon::RECURRING, 'title' => $this->translate('COM_DPCALENDAR_BOOKING_FIELD_SERIES_LABEL')]
								); ?>
								<?php echo nl2br($this->dateHelper->transformRRuleToString($event->rrule, $event->start_date, $event->exdates)); ?>
							</div>
						<?php } ?>
						<div class="dp-event__calendar">
							<?php echo $this->layoutHelper->renderLayout(
								'block.icon',
								['icon' => Icon::CALENDAR, 'title' => $this->translate('COM_DPCALENDAR_CALENDAR')]
							); ?>
							<?php echo $calendar != null ? $calendar->title : $event->catid; ?>
						</div>
						<?php echo $this->loadTemplate('events_locations'); ?>
						<?php echo $this->loadTemplate('events_prices'); ?>
						<?php if ($this->params->get('list_show_hits', 1)) { ?>
							<div class="dp-event__hits">
								<?php echo $this->layoutHelper->renderLayout('block.icon', ['icon' => Icon::BULLSEYE,]); ?>
								<?php echo $event->hits . ' ' . $this->translate('COM_DPCALENDAR_FIELD_CONFIG_EVENT_LABEL_HITS'); ?>
							</div>
						<?php } ?>
					</div>
					<?php echo $this->loadTemplate('events_cta'); ?>
					<?php if ($this->params->get('list_show_display_events') && $event->displayEvent->beforeDisplayContent) { ?>
						<div class="dp-event__display-before-content"><?php echo $event->displayEvent->beforeDisplayContent; ?></div>
					<?php } ?>
					<div class="dp-event__description"><?php echo $event->truncatedDescription; ?></div>
					<?php if ($this->params->get('list_show_display_events') && $event->displayEvent->afterDisplayContent) { ?>
						<div class="dp-event__display-after-content"><?php echo $event->displayEvent->afterDisplayContent; ?></div>
					<?php } ?>
				</div>
				<?php echo $this->layoutHelper->renderLayout('schema.event', $this->displayData); ?>
			</div>
		<?php } ?>
	</div>
</div>