fembooru/contrib/news/theme.php
2009-01-04 08:35:39 -08:00

12 lines
195 B
PHP

<?php
class NewsTheme extends Themelet {
/*
* Show $text on the $page
*/
public function display_news(Page $page, $text) {
$page->add_block(new Block("Note", $text, "left", 5));
}
}
?>