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.
 
 
 
 
 

28 lines
618 B

<?php
require 'info.php';
function zine_build($action, $settings, $board) {
zine::build($action, $settings);
}
class zine {
public static function build($action, $settings) {
global $config;
if ($action == 'all') {
file_write($config['dir']['home'] . $settings['file'], zine::install($settings));
}
}
public static function install($settings) {
global $config;
return Element('themes/zine/zine.html',
array('settings' => $settings,
'config' => $config,
'boardlist' => createBoardlist()));
}
}
?>