9 lines
208 B
PHP
Raw Normal View History

2009-01-16 00:18:15 -08: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));
}
}
?>