8 lines
459 B
PHP
8 lines
459 B
PHP
<?php
|
|
$MY_TITLE = "All Sessions";
|
|
$MY_CRUMB = "All Sessions";
|
|
$timeslot_config = file_exists('schedule_timeslots.json') ? json_decode(file_get_contents('schedule_timeslots.json'), true) : [];
|
|
$config_js = '<script>window.TIMESLOT_CONFIG = ' . json_encode($timeslot_config) . ';</script>';
|
|
$CONTENT = '<div id="timeslot-config" class="hidden"></div><activitylist :itineraryview="0" :static="1" :show_all_sessions="true"></activitylist>';
|
|
include 'layout.php';
|