Source code of Leftypol imageboard
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

53 lines
1.3 KiB

<?php
$theme = Array();
// Theme name
$theme['name'] = 'Sitemap Generator';
// Description (you can use Tinyboard markup here)
$theme['description'] = 'Generates an XML sitemap to help search engines find all threads and pages.';
$theme['version'] = 'v1.0';
// Theme configuration
$theme['config'] = Array();
$theme['config'][] = Array(
'title' => 'Sitemap Path',
'name' => 'path',
'type' => 'text',
'default' => 'sitemap.xml',
'size' => '20'
);
$theme['config'][] = Array(
'title' => 'URL prefix',
'name' => 'url',
'type' => 'text',
'comment' => '(with trailing slash)',
'default' => 'http://' . $_SERVER['HTTP_HOST'] . $config['root'],
'size' => '20'
);
$theme['config'][] = Array(
'title' => 'Thread change frequency',
'name' => 'changefreq',
'type' => 'text',
'comment' => '(eg. "hourly", "daily", etc.)',
'default' => 'hourly',
'size' => '20'
);
$__boards = listBoards();
$__default_boards = Array();
foreach ($__boards as $__board)
$__default_boards[] = $__board['uri'];
$theme['config'][] = Array(
'title' => 'Boards',
'name' => 'boards',
'type' => 'text',
'comment' => '(boards to include; space seperated)',
'size' => 24,
'default' => implode(' ', $__default_boards)
);
$theme['build_function'] = 'sitemap_build';