71 lines
No EOL
2.2 KiB
PHP
Executable file
71 lines
No EOL
2.2 KiB
PHP
Executable file
<?php
|
|
/** no direct access **/
|
|
defined('MECEXEC') or die();
|
|
|
|
/** @var MEC_skin_timetable $this */
|
|
|
|
// Get layout path
|
|
$render_path = $this->get_render_path();
|
|
|
|
// Generate Events
|
|
ob_start();
|
|
include $render_path;
|
|
$date_events = ob_get_clean();
|
|
|
|
// Return the data if called by AJAX
|
|
if(isset($this->atts['return_items']) and $this->atts['return_items'])
|
|
{
|
|
echo json_encode(array(
|
|
'date_events' => $date_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).'").mecWeeklyProgram(
|
|
{
|
|
id: "'.esc_js($this->id).'",
|
|
ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
|
|
atts: "'.http_build_query(array('atts' => $this->atts), '', '&').'",
|
|
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>';
|
|
|
|
// 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);
|
|
|
|
$styling = $this->main->get_styling();
|
|
$event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])) ? 'colorskin-custom' : '';
|
|
?>
|
|
<div id="mec_skin_<?php echo esc_attr($this->id); ?>" class="mec-timetable-wrap mec-wrap <?php echo esc_attr($event_colorskin . ' ' . $this->html_class); ?>">
|
|
|
|
<?php if($this->sf_status) echo MEC_kses::full($this->sf_search_form()); ?>
|
|
|
|
<div id="mec_skin_events_<?php echo esc_attr($this->id); ?>">
|
|
<?php echo MEC_kses::full($date_events); ?>
|
|
</div>
|
|
|
|
</div>
|