git-svn-id: file:///home/shish/svn/shimmie2/branches/branch_2.2@798 7f39781d-f577-437e-ae19-be835c7a54ca
		
			
				
	
	
		
			17 lines
		
	
	
		
			447 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			447 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
class IcoFileHandlerTheme extends Themelet {
 | 
						|
	public function display_image($page, $image) {
 | 
						|
		$ilink = $image->get_image_link();
 | 
						|
		$width = $image->width;
 | 
						|
		$height = $image->height;
 | 
						|
		$html = "
 | 
						|
			<object data='$ilink' type='image/x-icon' width='$width' height='$height'>
 | 
						|
			    <embed src='$ilink' type='image/x-icon' width='$width' height='$height' />
 | 
						|
			</object>
 | 
						|
		";
 | 
						|
		$page->add_block(new Block("Image", $html, "main", 0));
 | 
						|
	}
 | 
						|
}
 | 
						|
?>
 |