Browse Source

Added boardlinks

pull/40/head
Savetheinternet 13 years ago
parent
commit
c5aa3fdcc1
  1. 26
      inc/display.php
  2. 10
      inc/functions.php
  3. 1
      templates/index.html
  4. 1
      templates/thread.html

26
inc/display.php

@ -19,6 +19,32 @@
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;

10
inc/functions.php

@ -476,7 +476,14 @@
$body .= $thread->build(true);
}
return Array('button'=>$config['button_newtopic'], 'board'=>$board, 'body'=>$body, 'post_url' => $config['post_url'], 'index' => $config['root']);
return Array(
'button'=>$config['button_newtopic'],
'board'=>$board,
'body'=>$body,
'post_url' => $config['post_url'],
'index' => $config['root'],
'boardlist' => createBoardlist($mod)
);
}
function getPageButtons($pages, $mod=false) {
@ -967,6 +974,7 @@
'index' => $config['root'],
'id' => $id,
'mod' => $mod,
'boardlist' => createBoardlist($mod),
'hidden_inputs' => $content['hidden_inputs'] = createHiddenInputs(),
'return' => ($mod ? '?' . $board['url'] . $config['file_index'] : $config['root'] . $board['uri'] . '/' . $config['file_index'])
));

1
templates/index.html

@ -8,6 +8,7 @@
<script type="text/javascript" src="{index}main.js"></script>
</head>
<body>
{boardlist}
<h1>{board[url]} - {board[name]}</h1>
<div class="title">{board[title]?{board[title]}}<p>{mod?<a href="?/">Return to dashboard</a>}</p></div>

1
templates/thread.html

@ -8,6 +8,7 @@
<script type="text/javascript" src="{index}main.js"></script>
</head>
<body>
{boardlist}
<h1>{board[url]} - {board[name]}</h1>
<div class="title">{board[title]?{board[title]}}<p>{mod?<a href="?/">Return to dashboard</a>}</p></div>

Loading…
Cancel
Save