Allow arbritary overboard creation, make catalog compatible

This commit is contained in:
discomrade 2021-06-01 02:39:39 -02:00
parent 8daf9d79ef
commit 4e0e4f720e
7 changed files with 467 additions and 23 deletions

View file

@ -0,0 +1,23 @@
<?php
// Basic theme properties
$theme = array(
'name' => 'Overboards',
// Description (you can use Tinyboard markup here)
'description' => 'Add one or more overboards, such as a normal overboard and a SFW overboard.',
'version' => 'v0.1',
// Unique function name for building and installing whatever's necessary
'build_function' => 'overboards_build',
);
// Theme configuration
$theme['config'] = array(
array(
'title' => 'Edit overboards.php manually to add, remove or modify overboards',
'name' => 'instruct1',
'type' => 'checkbox',
'default' => false,
'comment' => 'Located at templates/themes/overboards/overboards.php'
),
);