leftypol/templates/themes/basic/theme.php

41 lines
1.1 KiB
PHP
Raw Normal View History

2011-04-13 18:33:18 +00:00
<?php
2011-04-14 12:12:56 +00:00
require 'info.php';
2011-04-13 18:33:18 +00:00
function basic_build($action, $settings, $board) {
2011-04-14 12:12:56 +00:00
// Possible values for $action:
// - all (rebuild everything, initialization)
// - news (news has been updated)
// - boards (board list changed)
Basic::build($action, $settings);
2011-04-13 18:33:18 +00:00
}
2011-04-14 12:12:56 +00:00
2011-04-13 18:33:18 +00:00
// Wrap functions in a class so they don't interfere with normal Tinyboard operations
class Basic {
2011-04-14 10:43:34 +00:00
public static function build($action, $settings) {
2011-04-13 18:33:18 +00:00
global $config;
2012-05-05 15:33:10 +00:00
if ($action == 'all' || $action == 'news')
file_write($config['dir']['home'] . $settings['file'], Basic::homepage($settings));
2011-04-13 18:33:18 +00:00
}
// Build news page
public static function homepage($settings) {
global $config;
$settings['no_recent'] = (int) $settings['no_recent'];
$query = query("SELECT * FROM ``news`` ORDER BY `time` DESC" . ($settings['no_recent'] ? ' LIMIT ' . $settings['no_recent'] : '')) or error(db_error());
2012-02-07 22:08:13 +00:00
$news = $query->fetchAll(PDO::FETCH_ASSOC);
return Element('themes/basic/index.html', Array(
'settings' => $settings,
'config' => $config,
'boardlist' => createBoardlist(),
'news' => $news
));
2011-04-13 18:33:18 +00:00
}
};
2011-10-06 12:26:07 +00:00
?>