adds catalog for overboard

This commit is contained in:
nonmakina 2021-01-10 21:18:09 -06:00
parent a2636ce0d6
commit 73ee83c9c6
2 changed files with 44 additions and 0 deletions

View file

@ -83,6 +83,20 @@
'default' => true,
'comment' => 'Check this if you wish to show a nice tooltip with info about the thread on mouse over.'
);
$theme['config'][] = Array(
'title' => 'Build overboard catalog',
'name' => 'has_overboard',
'type' => 'checkbox',
'default' => false,
'comment' => 'Check this if you wish to create a catalog for the overboard.'
);
$theme['config'][] = Array(
'title' => 'Overboard location (default \'overboard\')',
'name' => 'overboard_location',
'type' => 'text',
'default' => 'overboard',
'comment' => 'Fill in the location of the overboard directory. Default is \'overboard\' which corresponds to ./overboard'
);
// Unique function name for building everything
$theme['build_function'] = 'catalog_build';