-
Lyding Verena authored
tail.php in C.php file git-svn-id: https://sdcsvn01.eurac.edu/svn/commul/MERLIN/merlin-webpage@3798 71ad02bc-cbdd-11db-a10a-ee346e295fe1
Lyding Verena authoredtail.php in C.php file git-svn-id: https://sdcsvn01.eurac.edu/svn/commul/MERLIN/merlin-webpage@3798 71ad02bc-cbdd-11db-a10a-ee346e295fe1
F_mainsidebar.php 1.48 KiB
<!--SIDEBAR-->
<?php
if(preg_match("/teacher/", $current_script)){
$class1 ='class="current-menu-item"';
}
else if(preg_match("/research/", $current_script)){
$class2 ='class="current-menu-item"';
}
else if(preg_match("/mcorpus/", $current_script)){
$class3 ='class="current-menu-item"';
}
else if(preg_match("/annotation/", $current_script)){
$class4 ='class="current-menu-item"';
}
else if(preg_match("/download/", $current_script)){
$class5 ='class="current-menu-item"';
}
else if(preg_match("/data/", $current_script)){
$class6 ='class="current-menu-item"';
}
else{
//$current_script="nix";
}
?>
<div id="sidebar" class="widget-area" role="complementary">
<!-- class "current-menu-item" macht fett -->
<ul class="menu">
<li <?php echo $class1 ?>><a href="C_teacher.php"><?php echo $trans['m_learning'][$_SESSION['lang']]; ?></a></li>
<li <?php echo $class2 ?>><a href="C_research.php"><?php echo $trans['m_research'][$_SESSION['lang']]; ?></a></li>
<li <?php echo $class3 ?>><a href="C_mcorpus.php"><?php echo $trans['m_corpus'][$_SESSION['lang']]; ?></a></li>
<li <?php echo $class4 ?>><a href="C_annotation.php"><?php echo $trans['m_annotations'][$_SESSION['lang']]; ?></a></li>
<li <?php echo $class5 ?>><a href="C_download.php"><?php echo $trans['documentation'][$_SESSION['lang']]; ?></a></li>
<li <?php echo $class6 ?>><a href="C_data.php"><?php echo $trans['downloads'][$_SESSION['lang']]; ?></a></li>
</ul>
</div>
<!--SIDEBAR END-->