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/default/setup.theme.php

15 lines
325 B
PHP
Raw Normal View History

2009-07-07 12:42:34 +00:00
<?php
class CustomSetupTheme extends SetupTheme {
protected function sb_to_html(SetupBlock $block) {
return "
<div class='rr setupblock'>
<div class='rrtop'><div></div></div>
<div class='rrcontent'><b>{$block->header}</b><br>{$block->body}</div>
<div class='rrbot'><div></div></div>
</div>
";
}
}
?>