initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:57:21 -06:00
commit fd8ad64063
22097 changed files with 1960930 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<?php
###################################################################################################### set up this page
global $_MENU,$_WORDS,$_ERRORS,$_PATH_PREFIX,$_SEMINAR_FILES; // globals we will need
sort($_SEMINAR_FILES);
?>
<div class='page_subtitle'><?php echo $_WORDS['availableseminars'] ?></div>
<div class='page_content'>
<?php
foreach($_SEMINAR_FILES as $file) {
$data = xml_parse_file($_DOC_ROOT.'/data/pages/'.$file);
$data = isset($data['page'][$_LANG]) ? $data['page'][$_LANG] : ''; // only get the part that is for our language
$seminar_file_name = str_replace('.xml','',$file);
if(!empty($data))
{
print "
<p>
<a href='{$_PATH_PREFIX}/{$_LANG}/display/seminars/{$seminar_file_name}'>
{$data['name']}
</a>
</p>
";
}
}
?>
</div>