2013-06-07 11:44:37 +02:00
|
|
|
<?php
|
2015-02-04 10:46:36 +01:00
|
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
2013-06-07 11:44:37 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|