modern-events-calendar-lite/app/skins/list/tpl.php

108 lines
No EOL
4.7 KiB
PHP
Executable file

<?php
/** no direct access **/
defined('MECEXEC') or die();
/** @var MEC_skin_list $this */
$current_month_divider = isset($_REQUEST['current_month_divider']) ? sanitize_text_field($_REQUEST['current_month_divider']) : 0;
// Get layout path
$render_path = $this->get_render_path();
$styling = $this->main->get_styling();
$dark_mode = $styling['dark_mode'] ?? '';
if($dark_mode == 1) $set_dark = 'mec-dark-mode';
else $set_dark = '';
ob_start();
include $render_path;
$items_html = ob_get_clean();
if(isset($this->atts['return_items']) and $this->atts['return_items'])
{
echo json_encode(array('html' => $items_html, 'end_date' => $this->end_date, 'offset' => $this->next_offset, 'count' => $this->found, 'current_month_divider' => $current_month_divider, 'has_more_event' => (int) $this->has_more_events));
exit;
}
$sed_method = $this->sed_method;
if($sed_method == 'new') $sed_method = '0';
// Generating javascript code tpl
$javascript = '<script>
jQuery(document).ready(function()
{
var mec_interval = setInterval(function()
{
// Not Visible
if(!jQuery("#mec_skin_'.esc_js($this->id).'").is(":visible")) return;
jQuery("#mec_skin_'.esc_js($this->id).'").mecListView(
{
id: "'.esc_js($this->id).'",
start_date: "'.esc_js($this->start_date).'",
end_date: "'.esc_js($this->end_date).'",
offset: "'.esc_js($this->next_offset).'",
limit: "'.esc_js($this->limit).'",
pagination: "'.$this->pagination.'",
current_month_divider: "'.esc_js($current_month_divider).'",
toggle_month_divider: "'.esc_js($this->toggle_month_divider).'",
style: "'.(isset($this->skin_options['style']) ? esc_js($this->skin_options['style']) : NULL).'",
atts: "'.http_build_query(array('atts' => $this->atts), '', '&').'",
ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
sed_method: "'.esc_js($sed_method).'",
image_popup: "'.esc_js($this->image_popup).'",
sf:
{
container: "'.($this->sf_status ? '#mec_search_form_'.esc_js($this->id) : '').'",
reset: '.($this->sf_reset_button ? 1 : 0).',
refine: '.($this->sf_refine ? 1 : 0).',
},
});
clearInterval(mec_interval);
}, 500);
});
</script>';
// Do not include JS due to loading in display only views such as MEC Dashboard
if(isset($this->skin_options['ignore_js']) and $this->skin_options['ignore_js']) $javascript = '';
// Include javascript code into the page
if($this->main->is_ajax() or $this->main->preview()) echo MEC_kses::full($javascript);
else $this->factory->params('footer', $javascript);
do_action('mec_start_skin', $this->id);
do_action('mec_list_skin_head');
?>
<div class="mec-wrap mec-skin-list-container <?php echo esc_attr($this->html_class . ' ' . $set_dark); ?>" id="mec_skin_<?php echo esc_attr($this->id); ?>">
<?php if($this->sf_status) echo MEC_kses::full($this->sf_search_form()); ?>
<?php if($this->found): ?>
<?php if($this->map_on_top == '1'): ?>
<div class="mec-wrap mec-skin-map-container <?php echo esc_attr($this->html_class); ?>" id="mec_skin_<?php echo esc_attr($this->id); ?>">
<div class="mec-googlemap-skin" id="mec_googlemap_canvas<?php echo esc_attr($this->id); ?>" style="height: 500px;">
<?php
$map = $this->settings['default_maps_view'] ?? 'google';
do_action('mec_map_inner_element_tools', array('map' => $map));
?>
</div>
<input type="hidden" id="gmap-data" value="">
</div>
<?php endif; ?>
<div class="mec-skin-list-events-container<?php if($this->style == 'accordion' and $this->toggle_month_divider and $this->month_divider) echo ' mec-toggle-month-divider'; ?>" id="mec_skin_events_<?php echo esc_attr($this->id); ?>">
<?php echo MEC_kses::full($items_html); ?>
</div>
<div class="mec-skin-list-no-events-container mec-util-hidden" id="mec_skin_no_events_<?php echo esc_attr($this->id); ?>">
<?php $this->main->display_not_found_message(); ?>
</div>
<?php else: ?>
<div class="mec-skin-list-events-container<?php if($this->style == 'accordion' and $this->toggle_month_divider and $this->month_divider) echo ' mec-toggle-month-divider'; ?>" id="mec_skin_events_<?php echo esc_attr($this->id); ?>">
<?php $this->main->display_not_found_message(); ?>
</div>
<?php endif; ?>
<?php echo $this->get_pagination_bar(); ?>
</div>
<?php echo $this->display_credit_url();