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/notes/theme.php

14 lines
233 B
PHP
Raw Normal View History

<?php
class NotesTheme extends Themelet {
public function display_notes($page, $notes) {
$html = <<<EOD
<script type="text/javascript">
img = byId("main_image");
</script>
EOD;
$page->add_block(new Block(null, $html));
}
}
?>