2008-05-19 02:19:46 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class FeaturedTheme extends Themelet {
|
|
|
|
/*
|
|
|
|
* Show $text on the $page
|
|
|
|
*/
|
|
|
|
public function display_featured($page, $image) {
|
|
|
|
$page->add_block(new Block("Featured Image", $this->build_thumb_html($image), "left", 3));
|
|
|
|
}
|
|
|
|
|
2008-06-14 11:36:19 +00:00
|
|
|
public function get_buttons_html($image_id) {
|
|
|
|
return "
|
2008-05-19 02:19:46 +00:00
|
|
|
<form action='".make_link("set_feature")."' method='POST'>
|
|
|
|
<input type='hidden' name='image_id' value='$image_id'>
|
2008-06-16 01:08:28 +00:00
|
|
|
<input type='submit' value='Feature This'>
|
2008-05-19 02:19:46 +00:00
|
|
|
</form>
|
|
|
|
";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|