This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/themes/lite/user_config.theme.php
Shish 9ed58a69a0 [setup] drop hideable setup sections
this is mostly-broken; and when it works, it is confusing; and the code
is bad
2023-12-30 04:07:40 +00:00

14 lines
277 B
PHP

<?php
declare(strict_types=1);
namespace Shimmie2;
class CustomUserConfigTheme extends UserConfigTheme
{
protected function sb_to_html(SetupBlock $block): string
{
$html = parent::sb_to_html($block);
return "<div class='tframe'>$html</div>";
}
}