function __construct(Thread $thread) { parent::__construct($thread->getBoard()); $topLinks = div('', 'topLinks navLinks')->append('[' . a('Home', '/index') . ']')->append(' [' . a('Return', '/' . $this->board->getName() . '/') . ']'); if (!$thread->getBoard()->isSwfBoard()) { $topLinks->append(' [' . a('Catalog', '/' . $this->board->getName() . '/catalog') . ']'); } if (!$thread->getBoard()->isArchive() && $thread->isActive()) { if ($thread->isClosed()) { $this->appendToBody(el('h2', 'Thread is closed.')); } else { if (!isset($_SESSION['captcha'])) { $_SESSION['captcha'] = rand(100000, 999999); } $this->appendToBody(Site::parseHtmlFragment('postForm.html', ['_board_', '_resto_', '_password_'], [$thread->getBoard()->getName(), $thread->getThreadId(), 'password'])); } } $this->appendToBody($topLinks); $thread->loadAll(); $dur = secsToDHMS($thread->getPost($thread->getPosts() - 1)->getTime() - $thread->getPost(0)->getTime()); $board = div('', 'board'); if ($thread->getBoard()->isArchive()) { $threadStats = Site::parseHtmlFragment("threadStats.html", ["__threadid__", "__posts__", "__posts_actual__", "__images__", "__images_actual__", "__lifetime__", "__deleted__", "<!--4chanLink-->", "<!--tag-->"], [$thread->getThreadId(), $thread->getChanPosts(), $thread->getPosts() - 1, $thread->getChanImages(), $thread->getImages() - 1, "{$dur[0]}d {$dur[1]}h {$dur[2]}m {$dur[3]}s", $thread->getDeleted(), $thread->isActive() ? "<a target='_blank' href='//boards.4chan.org/{$this->board->getName()}/thread/{$thread->getThreadId()}'>View on 4chan</a>" : "Thread is dead.", $thread->getTag() != null ? "<br>Tagged as: " . $thread->getTag() : ""]); $board->append($threadStats); } else { $board->append('<hr>'); } $this->appendToBody($board->append(div($thread->displayThread(), 'thread'))); $bottomLinks = $topLinks; $this->appendToBody("<hr>" . $bottomLinks); }
function durationToText($duration) { $dhms = secsToDHMS($duration); $ret = array(); if ($dhms[0] != 0) { //days $ret[] = $dhms[0] . " days"; } if ($dhms[1] != 0) { //hours $ret[] = $dhms[1] . " hours"; } if ($dhms[2] != 0) { //minutes $ret[] = $dhms[2] . " minutes"; } if ($dhms[3] != 0) { $ret[] = $dhms[3] . " seconds"; } return implode(", ", $ret); }