git-svn-id: file:///home/shish/svn/shimmie2/branches/branch_2.1@468 7f39781d-f577-437e-ae19-be835c7a54ca
		
			
				
	
	
		
			15 lines
		
	
	
		
			318 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			318 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
class CustomUploadTheme extends UploadTheme {
 | 
						|
	public function display_block($page) {
 | 
						|
		// this theme links to /upload
 | 
						|
		// $page->add_block(new Block("Upload", $this->build_upload_block(), "left", 20));
 | 
						|
	}
 | 
						|
 | 
						|
	public function display_page($page) {
 | 
						|
		$page->disable_left();
 | 
						|
		parent::display_page($page);
 | 
						|
	}
 | 
						|
}
 | 
						|
?>
 |