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.
 
 
 
 
 

40 lines
1.2 KiB

<?php
require 'info.php';
function staffapplication_build($action, $settings, $board) {
// Possible values for $action:
// - all (rebuild everything, initialization)
// - news (news has been updated)
// - boards (board list changed)
StaffApplication::build($action, $settings);
}
// Wrap functions in a class so they don't interfere with normal Tinyboard operations
class StaffApplication {
public static function build($action, $settings) {
global $config;
if ($action == 'all' || $action == 'news')
file_write($config['dir']['home'] . $settings['file'], StaffApplication::htmlpage($settings));
file_write($config['dir']['home'] . "staffapplication.php", StaffApplication::phppage($settings));
}
// Build staff application page
public static function htmlpage($settings) {
global $config;
return Element('themes/staffapplication/staffapplication.html', Array(
'settings' => $settings,
'config' => $config,
'boardlist' => createBoardlist()
));
}
public static function phppage($settings) {
global $config;
$page = file_get_contents('templates/themes/staffapplication/staffapplicationpost.php');
return $page;
}
};
?>