27 lines
1.1 KiB
PHP
27 lines
1.1 KiB
PHP
<?php
|
|
namespace MobilizonConnector;
|
|
|
|
// Exit if this file is called directly.
|
|
if (!defined('ABSPATH')) {
|
|
exit;
|
|
}
|
|
?>
|
|
<div class="<?php echo esc_attr($classNamePrefix); ?>_events-list">
|
|
<ul style="list-style-type: none; padding-left: 0;">
|
|
<?php foreach ($events as $event) { ?>
|
|
<li style="line-height: 150%; margin-top: 20px;">
|
|
<?php if (isset($event['picture'])) { ?>
|
|
<img alt="<?php echo esc_attr($event['picture']['alt']); ?>" src="<?php echo esc_attr($event['picture']['base64']); ?>" style="display: block; max-width: 100%;">
|
|
<?php } ?>
|
|
<a href="<?php echo esc_attr($event['url']); ?>"><?php echo esc_html($event['title']); ?></a>
|
|
<br>
|
|
<?php echo esc_html(Formatter::format_date($locale, $timeZone, $event['beginsOn'], $event['endsOn'], $isShortOffsetNameShown)); ?>
|
|
<?php if (isset($event['physicalAddress'])) { ?>
|
|
<br>
|
|
<?php echo esc_html(Formatter::format_location($event['physicalAddress']['description'], $event['physicalAddress']['locality'])) ?>
|
|
<?php } ?>
|
|
</li>
|
|
<?php } ?>
|
|
</ul>
|
|
</div>
|