8 lines
453 B
PHP
8 lines
453 B
PHP
<?php
|
|
$MY_TITLE = "Schedule & Sessions";
|
|
$MY_CRUMB = "My Schedule";
|
|
$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="1" :show_all_sessions="true"></activitylist>';
|
|
include 'layout.php';
|