Source code of Leftypol imageboard
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

34 lines
806 B

<?php
require 'info.php';
function stream_build($action, $settings, $board) {
// Possible values for $action:
// - all (rebuild everything, initialization)
// - boards (board list changed)
Stream::build($action, $settings);
}
// Wrap functions in a class so they don't interfere with normal Tinyboard operations
class Stream {
public static function build($action, $settings) {
global $config;
if ($action == 'all' )
file_write($config['dir']['home'] . $settings['file'], Stream::homepage($settings));
}
// Build news page
public static function homepage($settings) {
global $config;
return Element('themes/stream/stream.html', Array(
'settings' => $settings,
'config' => $config,
'boardlist' => createBoardlist(),
));
}
};
?>