9ed58a69a0
this is mostly-broken; and when it works, it is confusing; and the code is bad
14 lines
277 B
PHP
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>";
|
|
}
|
|
}
|