25 lines
		
	
	
		
			509 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			509 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| class CustomExtManagerTheme extends ExtManagerTheme {
 | |
| 	/**
 | |
| 	 * @param Page $page
 | |
| 	 * @param array $extensions
 | |
| 	 * @param bool $editable
 | |
| 	 */
 | |
| 	public function display_table(Page $page, array $extensions, bool $editable) {
 | |
| 		$page->disable_left();
 | |
| 		parent::display_table($page, $extensions, $editable);
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @param Page $page
 | |
| 	 * @param ExtensionInfo $info
 | |
| 	 */
 | |
| 	public function display_doc(Page $page, ExtensionInfo $info) {
 | |
| 		$page->disable_left();
 | |
| 		parent::display_doc($page, $info);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| 
 |