mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-29 16:54:04 +02:00
parent
4a14dc5916
commit
2d24828230
54
library/Icinga/Application/WebInstaller.php
Normal file
54
library/Icinga/Application/WebInstaller.php
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
<?php
|
||||||
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||||||
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||||||
|
|
||||||
|
namespace Icinga\Application;
|
||||||
|
|
||||||
|
use Icinga\Web\Setup\Installer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Icinga Web 2 Installer
|
||||||
|
*/
|
||||||
|
class WebInstaller implements Installer
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* The setup wizard's page data
|
||||||
|
*
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
protected $pageData;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new web installer
|
||||||
|
*
|
||||||
|
* @param array $pageData The setup wizard's page data
|
||||||
|
*/
|
||||||
|
public function __construct(array $pageData)
|
||||||
|
{
|
||||||
|
$this->pageData = $pageData;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Installer::run()
|
||||||
|
*/
|
||||||
|
public function run()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Installer::getSummary()
|
||||||
|
*/
|
||||||
|
public function getSummary()
|
||||||
|
{
|
||||||
|
return array();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Installer::getReport()
|
||||||
|
*/
|
||||||
|
public function getReport()
|
||||||
|
{
|
||||||
|
return array();
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user