????JFIF??x?x????'
Server IP : 104.21.96.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/pontiacques.org/wp-content/plugins/event-calendar-wd/views/ |
Upload File : |
<?php if (is_array($events) && !empty($events) > 0) { global $post; if ($upcoming_events) { $evs_text = __('Related upcoming events', 'event-calendar-wd'); } else { $evs_text = __('Upcoming events', 'event-calendar-wd'); } ?> <div class="ecwd-organizer-events"> <h3><?php _e($evs_text, 'event-calendar-wd') ?></h3> <div class="upcoming_events_slider"> <div class="upcoming_events_slider-arrow-left"><a href="#left"></a></div> <div class="upcoming_events_slider-arrow-right"><a href="#right"></a></div> <ul> <?php $events_count = 0; foreach ($events as $key => $ecwd_event) { if ($related_events_count >= 0 && $events_count > $related_events_count) { break; } if ($upcoming_events == false || ($upcoming_events == true && strtotime($ecwd_event['from']) >= strtotime($today))) { $events_count++; ?> <li itemscope itemtype="http://schema.org/Event" class="upcoming_events_item"> <div class="upcoming_event_container"> <?php $image_class = ''; $image = getAndReplaceFirstImage($ecwd_event['post']->post_content); if ( !has_post_thumbnail($ecwd_event['id']) && !isset($image['image']) ) { $image_class = "ecwd-no-image"; } echo '<div class="upcoming_events_item-img ' . $image_class . '">'; if ( get_the_post_thumbnail($ecwd_event['id']) ) { echo get_the_post_thumbnail($ecwd_event['id'], 'thumb'); } elseif ( isset($image['image']) ) { echo '<img src="' . $image['image'] . '" />'; $ecwd_event['post']->post_content = $image['content']; } echo '</div>'; ?> <div class="event-title" itemprop="name"> <a href="<?php echo $ecwd_event['permalink'] ?>"><?php echo $ecwd_event['title'] ?></a> </div> <div class="event-date" itemprop="startDate" content="<?php echo ECWD::ecwd_date('Y-m-d', strtotime($ecwd_event['from'])) . 'T' . ECWD::ecwd_date('H:i', strtotime($ecwd_event['starttime'])) ?>"> <?php if (isset($ecwd_event['all_day_event']) && $ecwd_event['all_day_event'] == 1) { echo ECWD::ecwd_date($date_format, strtotime($ecwd_event['from'])); if ($ecwd_event['to'] && ECWD::ecwd_date($date_format, strtotime($ecwd_event['from'])) !== ECWD::ecwd_date($date_format, strtotime($ecwd_event['to']))) { echo ' - ' . ECWD::ecwd_date($date_format, strtotime($ecwd_event['to'])); } echo ' ' . __('All day', 'event-calendar-wd'); } else { echo ECWD::ecwd_date($date_format, strtotime($ecwd_event['from'])) . ' ' . ECWD::ecwd_date($time_format, strtotime($ecwd_event['starttime'])); if ($ecwd_event['to']) { echo ' - ' . ECWD::ecwd_date($date_format, strtotime($ecwd_event['to'])) . ' ' . ECWD::ecwd_date($time_format, strtotime($ecwd_event['endtime'])); } echo ECWD::get_time_zone(); } ?> </div> <div class="upcoming_events_item-content"><?php echo( $ecwd_event['post']->post_content ? wpautop(strip_shortcodes($ecwd_event['post']->post_content)) : 'No additional details for this event.' ); ?> </div> </div> </li> <?php } } ?> </ul> </div> </div> <?php } ?>