fembooru/ext/news/theme.php

9 lines
153 B
PHP
Raw Normal View History

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