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

9 lines
208 B
PHP
Raw Normal View History

2009-01-16 08:18:15 +00:00
<?php
class RandomImageTheme extends Themelet {
public function display_random(Page $page, Image $image) {
$page->add_block(new Block("Random Image", $this->build_thumb_html($image), "left", 8));
}
}
?>