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/warm/setup.theme.php
2009-07-23 02:32:45 +01:00

19 lines
442 B
PHP

<?php
/**
* A customised version of the Setup theme
*/
class CustomSetupTheme extends SetupTheme {
/**
* Turn a SetupBlock into HTML... with rounded corners.
*/
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>
";
}
}
?>