git-svn-id: file:///home/shish/svn/shimmie2/branches/branch_2.2@903 7f39781d-f577-437e-ae19-be835c7a54ca
		
			
				
	
	
		
			21 lines
		
	
	
		
			480 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			480 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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));
 | 
						|
	}
 | 
						|
 | 
						|
	public function get_buttons_html($image_id) {
 | 
						|
		return "
 | 
						|
			<form action='".make_link("set_feature")."' method='POST'>
 | 
						|
			<input type='hidden' name='image_id' value='$image_id'>
 | 
						|
			<input type='submit' value='Feature This'>
 | 
						|
			</form>
 | 
						|
		";
 | 
						|
	}
 | 
						|
}
 | 
						|
?>
 |