recent theme: transition to Twig template files
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
$theme['name'] = 'RecentPosts';
|
||||
// Description (you can use Tinyboard markup here)
|
||||
$theme['description'] = 'Show recent posts and images, like 4chan.';
|
||||
$theme['version'] = 'v0.9';
|
||||
$theme['version'] = 'v0.9.1';
|
||||
|
||||
// Theme configuration
|
||||
$theme['config'] = Array();
|
||||
@@ -13,7 +13,8 @@
|
||||
$theme['config'][] = Array(
|
||||
'title' => 'Title',
|
||||
'name' => 'title',
|
||||
'type' => 'text'
|
||||
'type' => 'text',
|
||||
'default' => 'Recent Posts'
|
||||
);
|
||||
|
||||
$theme['config'][] = Array(
|
||||
@@ -23,6 +24,48 @@
|
||||
'comment' => '(space seperated)'
|
||||
);
|
||||
|
||||
$theme['config'][] = Array(
|
||||
'title' => '# of recent images',
|
||||
'name' => 'limit_images',
|
||||
'type' => 'text',
|
||||
'default' => '3',
|
||||
'comment' => '(maximum images to display)'
|
||||
);
|
||||
|
||||
$theme['config'][] = Array(
|
||||
'title' => '# of recent posts',
|
||||
'name' => 'limit_posts',
|
||||
'type' => 'text',
|
||||
'default' => '30',
|
||||
'comment' => '(maximum posts to display)'
|
||||
);
|
||||
|
||||
$theme['config'][] = Array(
|
||||
'title' => 'HTML file',
|
||||
'name' => 'html',
|
||||
'type' => 'text',
|
||||
'default' => 'recent.html',
|
||||
'comment' => '(eg. "recent.html")'
|
||||
);
|
||||
|
||||
$theme['config'][] = Array(
|
||||
'title' => 'CSS file',
|
||||
'name' => 'css',
|
||||
'type' => 'text',
|
||||
'default' => 'recent.css',
|
||||
'comment' => '(eg. "recent.css")'
|
||||
);
|
||||
|
||||
// Unique function name for building everything
|
||||
$theme['build_function'] = 'recentposts_build';
|
||||
?>
|
||||
$theme['install_callback'] = 'recentposts_install';
|
||||
|
||||
if(!function_exists('recentposts_install')) {
|
||||
function recentposts_install($settings) {
|
||||
if(!is_numeric($settings['limit_images']) || $settings['limit_images'] < 0)
|
||||
return Array(false, '<strong>' . utf8tohtml($settings['limit_images']) . '</strong> is not a non-negative integer.');
|
||||
if(!is_numeric($settings['limit_posts']) || $settings['limit_posts'] < 0)
|
||||
return Array(false, '<strong>' . utf8tohtml($settings['limit_posts']) . '</strong> is not a non-negative integer.');
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user