6d806b717a67f8195f2500516cfefa235e716952
[atutor.git] / mods / wiki / plugins / appearance / listpages_ul.php
1 <?php
2
3 # this was the original page list generation code using <ul> and <li> tags,
4 # which however annoyed some people and has therefor been replaced in the
5 # core, and is now banned into this plugin
6
7
8 $ewiki_plugins["list_pages"][0] = "ewiki_list_pages_ul";
9
10
11 function ewiki_list_pages_ul($lines=array(), $list_tag="ul") {
12
13    $o = "<" . $list_tag . ">\n";
14    $o .= "<li>" . implode("</li>\n<li>", $lines) . "</li>\n";
15    $o .= "</" . $list_tag . ">\n";
16
17    return($o);
18 }
19
20
21 ?>