git-svn-id: file:///home/shish/svn/shimmie2/branches/branch_2.2@793 7f39781d-f577-437e-ae19-be835c7a54ca
		
			
				
	
	
		
			11 lines
		
	
	
		
			251 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			251 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
class IcoFileHandlerTheme extends Themelet {
 | 
						|
	public function display_image($page, $image) {
 | 
						|
		$ilink = $image->get_image_link();
 | 
						|
		$html = "<img id='main_image' src='$ilink'>";
 | 
						|
		$page->add_block(new Block("Image", $html, "main", 0));
 | 
						|
	}
 | 
						|
}
 | 
						|
?>
 |