Files
cavepaintings/themes/lite/setup.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

15 lines
267 B
PHP

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