Просмотр исходного кода

Add ukko4 theme to catalog theme

pull/128/merge
Benjamin Southall 6 лет назад
Родитель
Сommit
0fcae437d4
2 измененных файлов: 52 добавлений и 0 удалений
  1. +7
    -0
      templates/themes/catalog/info.php
  2. +45
    -0
      templates/themes/catalog/theme.php

+ 7
- 0
templates/themes/catalog/info.php Просмотреть файл

@@ -61,6 +61,13 @@
'default' => false,
'comment' => 'Enable catalog for the Ukko theme. This requires the Ukko3 theme to be enabled.'
);
$theme['config'][] = Array(
'title' => 'Enable Ukko4 catalog',
'name' => 'enable_ukko4',
'type' => 'checkbox',
'default' => false,
'comment' => 'Enable catalog for the Ukko theme. This requires the Ukko4 theme to be enabled.'
);

$theme['config'][] = Array(
'title' => 'Enable Rand catalog',


+ 45
- 0
templates/themes/catalog/theme.php Просмотреть файл

@@ -62,6 +62,13 @@
{
$b->buildUkko3();
}
// FIXME: Check that Ukko3 is actually enabled
if ($settings['enable_ukko4'] && (
$action === 'all' || $action === 'post' ||
$action === 'post-thread' || $action === 'post-delete' || $action === 'rebuild'))
{
$b->buildUkko4();
}
// FIXME: Check that Rand is actually enabled
if ($settings['enable_rand'] && (
$action === 'all' || $action === 'post' ||
@@ -197,6 +204,44 @@
}
/**
* Build and save the HTML of the catalog for the Ukko theme
*/
public function buildUkko4() {
global $config;

$ukkoSettings = themeSettings('ukko4');
$queries = array();
$threads = array();

$exclusions = explode(' ', $ukkoSettings['exclude']);
$boards = array_diff(listBoards(true), $exclusions);

foreach ($boards as $b) {
if (array_key_exists($b, $this->threadsCache)) {
$threads = array_merge($threads, $this->threadsCache[$b]);
} else {
$queries[] = $this->buildThreadsQuery($b);
}
}

// Fetch threads from boards that haven't beenp processed yet
if (!empty($queries)) {
$sql = implode(' UNION ALL ', $queries);
$res = query($sql) or error(db_error());
$threads = array_merge($threads, $res->fetchAll(PDO::FETCH_ASSOC));
}

// Sort in bump order
usort($threads, function($a, $b) {
return strcmp($b['bump'], $a['bump']);
});
// Generate data for the template
$recent_posts = $this->generateRecentPosts($threads);

$this->saveForBoard($ukkoSettings['uri'], $recent_posts,
$config['root'] . $ukkoSettings['uri']);
}
/**
* Build and save the HTML of the catalog for the Rand theme
*/
public function buildRand() {


Загрузка…
Отмена
Сохранить