2011-04-13 14:33:18 -04:00
|
|
|
|
<?php
|
|
|
|
|
$theme = Array();
|
|
|
|
|
|
|
|
|
|
// Theme name
|
|
|
|
|
$theme['name'] = 'Basic';
|
|
|
|
|
// Description (you can use Tinyboard markup here)
|
|
|
|
|
$theme['description'] = 'Extremely basic news listing for the homepage. It\'s suggested that you enable boardlinks for this theme.';
|
|
|
|
|
$theme['version'] = 'v0.9';
|
|
|
|
|
|
|
|
|
|
// Theme configuration
|
|
|
|
|
$theme['config'] = Array();
|
|
|
|
|
|
|
|
|
|
$theme['config'][] = Array(
|
|
|
|
|
'title' => 'Title',
|
|
|
|
|
'name' => 'title',
|
|
|
|
|
'type' => 'text'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$theme['config'][] = Array(
|
|
|
|
|
'title' => 'Slogan',
|
|
|
|
|
'name' => 'subtitle',
|
|
|
|
|
'type' => 'text'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Unique function name for building everything
|
2011-04-14 02:58:43 -04:00
|
|
|
|
$theme['build_function'] = 'basic_build';
|
2011-04-13 14:33:18 -04:00
|
|
|
|
|
2011-04-14 06:43:34 -04:00
|
|
|
|
function basic_build($action, $settings) {
|
|
|
|
|
// Possible values for $action:
|
|
|
|
|
// - all (rebuild everything, initialization)
|
|
|
|
|
// - news (news has been updated)
|
|
|
|
|
// - boards (board list changed)
|
|
|
|
|
|
|
|
|
|
Basic::build($action, $settings);
|
2011-04-13 14:33:18 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Wrap functions in a class so they don't interfere with normal Tinyboard operations
|
|
|
|
|
class Basic {
|
2011-04-14 06:43:34 -04:00
|
|
|
|
public static function build($action, $settings) {
|
2011-04-13 14:33:18 -04:00
|
|
|
|
global $config;
|
|
|
|
|
|
2011-04-14 06:43:34 -04:00
|
|
|
|
if($action == 'all' || $action == 'news')
|
|
|
|
|
file_put_contents($config['dir']['home'] . $config['file_index'], Basic::homepage($settings));
|
2011-04-13 14:33:18 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Build news page
|
|
|
|
|
public static function homepage($settings) {
|
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
|
|
// HTML5
|
|
|
|
|
$body = '<!DOCTYPE html><html>'
|
|
|
|
|
. '<head>'
|
|
|
|
|
. '<link rel="stylesheet" media="screen" href="' . $config['url_stylesheet'] . '"/>'
|
|
|
|
|
. '<title>' . $settings['title'] . '</title>'
|
|
|
|
|
. '</head><body>';
|
|
|
|
|
|
|
|
|
|
$boardlist = createBoardlist();
|
|
|
|
|
$body .= '<div class="boardlist">' . $boardlist['top'] . '</div>';
|
|
|
|
|
|
|
|
|
|
$body .= '<h1>' . $settings['title'] . '</h1>'
|
|
|
|
|
. '<div class="title">' . ($settings['subtitle'] ? utf8tohtml($settings['subtitle']) : '') . '</div>';
|
|
|
|
|
|
|
|
|
|
$body .= '<div class="ban">';
|
|
|
|
|
|
|
|
|
|
$query = query("SELECT * FROM `news` ORDER BY `time` DESC") or error(db_error());
|
|
|
|
|
if($query->rowCount() == 0) {
|
|
|
|
|
$body .= '<p style="text-align:center" class="unimportant">(No news to show.)</p>';
|
|
|
|
|
} else {
|
|
|
|
|
// List news
|
|
|
|
|
while($news = $query->fetch()) {
|
|
|
|
|
$body .= '<h2 id="' . $news['id'] . '">' .
|
|
|
|
|
($news['subject'] ?
|
|
|
|
|
$news['subject']
|
|
|
|
|
:
|
|
|
|
|
'<em>no subject</em>'
|
|
|
|
|
) .
|
|
|
|
|
'<span class="unimportant"> <20> by ' .
|
|
|
|
|
$news['name'] .
|
|
|
|
|
' at ' .
|
|
|
|
|
date($config['post_date'], $news['time']) .
|
|
|
|
|
'</span></h2><p>' . $news['body'] . '</p>';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$body .= '</div>';
|
|
|
|
|
|
|
|
|
|
// Finish page
|
|
|
|
|
$body .= '<hr/><p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a></body></html>';
|
|
|
|
|
|
|
|
|
|
return $body;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
?>
|