new banlist implementation; also includes a public banlist
This commit is contained in:
parent
906764a62f
commit
9b3fa77719
10 changed files with 424 additions and 156 deletions
33
templates/themes/public_banlist/info.php
Normal file
33
templates/themes/public_banlist/info.php
Normal file
|
@ -0,0 +1,33 @@
|
|||
<?php
|
||||
$theme = Array();
|
||||
|
||||
// Theme name
|
||||
$theme['name'] = 'Public Banlist';
|
||||
// Description (you can use Tinyboard markup here)
|
||||
$theme['description'] =
|
||||
'Shows a public list of bans, that were issued on all boards. Basically, this theme
|
||||
copies the banlist interface from moderation panel.';
|
||||
$theme['version'] = 'v0.1';
|
||||
|
||||
// Theme configuration
|
||||
$theme['config'] = Array();
|
||||
|
||||
$theme['config'][] = Array(
|
||||
'title' => 'JSON feed file',
|
||||
'name' => 'file_json',
|
||||
'type' => 'text',
|
||||
'default' => 'bans.json',
|
||||
'comment' => '(eg. "bans.json")'
|
||||
);
|
||||
|
||||
$theme['config'][] = Array(
|
||||
'title' => 'Main HTML file',
|
||||
'name' => 'file_bans',
|
||||
'type' => 'text',
|
||||
'default' => 'bans.html',
|
||||
'comment' => '(eg. "bans.html")'
|
||||
);
|
||||
|
||||
// Unique function name for building everything
|
||||
$theme['build_function'] = 'pbanlist_build';
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue