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

23 lines
525 B
PHP
Raw Normal View History

<?php
class FeaturedTheme extends Themelet {
/*
* Show $text on the $page
*/
2009-01-04 19:54:16 +00:00
public function display_featured(Page $page, Image $image) {
$page->add_block(new Block("Featured Image", $this->build_thumb_html($image), "left", 3));
}
public function get_buttons_html($image_id) {
2010-05-28 13:26:46 +00:00
global $user;
return "
".make_form(make_link("featured_image/set"))."
2011-03-23 11:12:55 +00:00
".$user->get_auth_html()."
<input type='hidden' name='image_id' value='$image_id'>
<input type='submit' value='Feature This'>
</form>
";
}
}
?>