mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 03:14:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			645 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			645 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /* Icinga Web 2 | (c) 2013 Icinga Development Team | GPLv2+ */
 | |
| 
 | |
| namespace Icinga\Application;
 | |
| 
 | |
| require_once dirname(__FILE__) . '/Web.php';
 | |
| use Icinga\Exception\ProgrammingError;
 | |
| 
 | |
| class LegacyWeb extends Web
 | |
| {
 | |
|     // IcingaWeb 1.x base dir
 | |
|     protected $legacyBasedir;
 | |
| 
 | |
|     protected function bootstrap()
 | |
|     {
 | |
|         parent::bootstrap();
 | |
|         throw new ProgrammingError('Not yet');
 | |
|         // $this->setupIcingaLegacyWrapper();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Get the Icinga-Web 1.x base path
 | |
|      *
 | |
|      * @throws Exception
 | |
|      * @return self
 | |
|      */
 | |
|     public function getLecacyBasedir()
 | |
|     {
 | |
|         return $this->legacyBasedir;
 | |
|     }
 | |
| }
 |