2016-10-24 16:22:25 +03:00
|
|
|
<?php
|
|
|
|
$requirePath = __DIR__ . DIRECTORY_SEPARATOR . 'schedule' . DIRECTORY_SEPARATOR;
|
|
|
|
require $requirePath . 'class.SmartCurl.php';
|
|
|
|
require $requirePath . 'config.php';
|
|
|
|
require $requirePath . 'load.php';
|
|
|
|
require $requirePath . 'parse.php';
|
|
|
|
|
|
|
|
$siteurl = get_option('siteurl');
|
|
|
|
$year = preg_replace('%.*/([0-9]*)$%', '\1', $siteurl);
|
|
|
|
|
|
|
|
$sched_config = getSchedConfig($year);
|
|
|
|
|
2017-10-20 01:27:49 +03:00
|
|
|
$sched_config['lang'] = of_get_lang();
|
|
|
|
|
2016-10-24 16:22:25 +03:00
|
|
|
$data = loadData($sched_config);
|
|
|
|
|
|
|
|
if ( preg_match('/^workshop/', $pagename) ) {
|
|
|
|
$sched_config['filterEventType'] = "workshop";
|
2018-10-16 13:07:52 +03:00
|
|
|
} else if (!preg_match('/^full/', $pagename)) {
|
2016-10-24 16:22:25 +03:00
|
|
|
$sched_config['filterEventType'] = "lecture";
|
|
|
|
}
|
|
|
|
$content = parseData($sched_config, $data);
|
|
|
|
|