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/contrib/news/theme.php
shish ff199a7c63 Now that the extension manager is working, the non-essential extensions can be made optional
git-svn-id: file:///home/shish/svn/shimmie2/trunk@803 7f39781d-f577-437e-ae19-be835c7a54ca
2008-04-11 05:28:36 +00:00

11 lines
190 B
PHP

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