Added boardlinks

This commit is contained in:
Savetheinternet
2011-02-19 20:16:13 +11:00
parent 9443c0f234
commit c5aa3fdcc1
4 changed files with 37 additions and 1 deletions

View File

@@ -18,6 +18,32 @@
$n = strval($n);
return (intval($n) < 1000) ? $n : commaize(substr($n, 0, -3)) . ',' . substr($n, -3);
}
function doBoardListPart($list, $root) {
global $config;
$body = '';
foreach($list as $board) {
if(is_array($board))
$body .= ' [' . doBoardListPart($board, $root) . '] ';
else {
$body .= ' <a href="' . $root . $board . '/' . $config['file_index'] . '">' . $board . '</a> /';
}
}
$body = preg_replace('/\/$/', '', $body);
return $body;
}
function createBoardlist($mod=false) {
global $config;
if(!isset($config['boards'])) return '';
$body = doBoardListPart($config['boards'], $mod?'?/':$config['root']);
return '<div class="boardlist">' . $body . '</div>';
}
function error($message) {
global $board, $mod, $config;