leftypol/templates/themes/recent/info.php

28 lines
626 B
PHP
Raw Normal View History

2011-04-14 18:53:29 +00:00
<?php
$theme = Array();
// Theme name
$theme['name'] = 'RecentPosts';
// Description (you can use Tinyboard markup here)
$theme['description'] = 'Show recent posts and images, like 4chan.';
$theme['version'] = 'v0.9';
// Theme configuration
$theme['config'] = Array();
$theme['config'][] = Array(
'title' => 'Title',
'name' => 'title',
'type' => 'text'
);
2011-04-16 15:28:25 +00:00
$theme['config'][] = Array(
'title' => 'Excluded boards',
'name' => 'exclude',
'type' => 'text',
'comment' => '(space seperated)'
);
2011-04-14 18:53:29 +00:00
// Unique function name for building everything
$theme['build_function'] = 'recentposts_build';
?>