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
2009-01-04 08:35:39 -08:00

11 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));
}
}
?>