Пример #1
0
 public function getFormattedList($type = 'author')
 {
     $db = new library();
     $list = $db->getAuthorList();
     $formattedlist = "<ul>\n";
     foreach ($list as $author => $rec) {
         $formattedlist .= "<li><a href=\"http://" . SERVER . BASEURL . "/{$what}/" . $author['name'] . "/\">{$author}</a></li>\n";
     }
     $formattedlist .= '</ul>';
     return $formattedlist;
 }