24 lines
833 B
PHP
24 lines
833 B
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="margin-top: 10px;">
|
|
<a href="<?php echo esc_attr($event['url']); ?>"><?php echo esc_html_e($event['title']); ?></a>
|
|
<br>
|
|
<?php echo esc_html_e(Formatter::format_date($locale, $timeZone, $event['beginsOn'], $event['endsOn'], $isShortOffsetNameShown)); ?>
|
|
<?php if (isset($event['physicalAddress'])) { ?>
|
|
<br>
|
|
<?php echo esc_html_e(Formatter::format_location($event['physicalAddress']['description'], $event['physicalAddress']['locality'])) ?>
|
|
<?php } ?>
|
|
</li>
|
|
<?php } ?>
|
|
</ul>
|
|
</div>
|