c096e86bdeb77a8b606d8f51a966e38e4812f7a4
[atutor.git] / mods / wiki / fragments / blocks / mainmenu.php
1 <?php
2
3 /*
4    Gets the first list of links from the page "MainMenu" and outputs
5    it. (verything else on that page gets stripped)
6 */
7
8
9 if (true) {
10
11    $mm = ewiki_db::GET("MainMenu");
12
13    if ($mm = $mm["content"]) {
14       $mm = preg_replace("/^([^*]+[^\n]+)?\n/m", "", $mm);
15       $mm = ewiki_format($mm);
16       echo '<div class="MainMenu">' .  "\n" . $mm . "\n</div>\n";
17    }
18
19 }
20
21
22 ?>