Jannis Moßhammer 54ccb9b12a Move libraries from incubator to working tree for evaluation
Add all untested files from incubator's library/Icinga to working
tree library/Icinga

refs #4257
2013-06-07 15:46:33 +02:00

31 lines
582 B
PHP

<?php
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;
}
}