2015-10-19 02:04:49 +03:00
|
|
|
<?php
|
|
|
|
/* Template Name: Schedule */
|
|
|
|
get_header();
|
2015-10-22 13:22:45 +03:00
|
|
|
wp_nav_menu( array( 'theme_location' => 'footer-schedule', 'container_class' => 'content subnav cf' ) );
|
2015-10-19 21:14:48 +03:00
|
|
|
|
2015-10-22 17:19:51 +03:00
|
|
|
require("schedule-config.php");
|
2015-10-19 21:14:48 +03:00
|
|
|
|
2015-10-19 02:04:49 +03:00
|
|
|
$content = require __DIR__ . DIRECTORY_SEPARATOR . 'schedule' . DIRECTORY_SEPARATOR . 'parse.php';
|
|
|
|
//var_dump($data);
|
|
|
|
?>
|
2015-10-19 12:04:20 +03:00
|
|
|
<section class="content grid">
|
|
|
|
<div class="col-left">
|
2015-10-20 19:22:05 +03:00
|
|
|
<h1><?php pll_e('Програма') ?></h1>
|
2015-10-19 12:04:20 +03:00
|
|
|
|
|
|
|
|
2015-10-19 11:50:48 +03:00
|
|
|
<table cellpadding="0" cellspacing="0" style="text-align: center;" class="schedule">
|
2015-10-19 02:04:49 +03:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<td> </td>
|
|
|
|
<?php
|
|
|
|
foreach ($content['halls'] as $hall_name) {
|
|
|
|
?>
|
2015-10-23 17:27:02 +03:00
|
|
|
<td><?php echo htmlspecialchars($hall_name[$CF['lang']]); ?></td>
|
2015-10-19 02:04:49 +03:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php
|
|
|
|
foreach ($content['lines'] as $line) {
|
2015-10-22 17:19:51 +03:00
|
|
|
echo str_replace('SPKURL', $CF['speakers_url'], $line), PHP_EOL;
|
2015-10-19 02:04:49 +03:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<div class="separator"></div>
|
2015-10-20 01:14:42 +03:00
|
|
|
<table cellpadding="0" cellspacing="0" class="schedule schedule-legend">
|
|
|
|
<tbody>
|
|
|
|
<?php
|
|
|
|
foreach ($content['legend'] as $line) {
|
|
|
|
echo $line, PHP_EOL;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2015-10-19 02:04:49 +03:00
|
|
|
<?php
|
|
|
|
foreach ($content['fulltalks'] as $line) {
|
2015-10-22 17:19:51 +03:00
|
|
|
echo str_replace('SPKURL', $CF['speakers_url'], $line), PHP_EOL;
|
2015-10-19 02:04:49 +03:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
2015-10-19 12:04:20 +03:00
|
|
|
<?php get_sidebar(); ?>
|
2015-10-19 02:04:49 +03:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<?php echo do_shortcode( '[transport]' ); ?>
|
|
|
|
|
|
|
|
<?php get_footer(); ?>
|