2014-09-29 14:19:05 +02:00
|
|
|
<?php
|
2015-02-03 16:27:59 +01:00
|
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | http://www.gnu.org/licenses/gpl-2.0.txt */
|
2014-09-29 14:19:05 +02:00
|
|
|
|
2014-11-10 16:31:40 +01:00
|
|
|
namespace Icinga\Module\Setup;
|
2014-09-29 14:19:05 +02:00
|
|
|
|
|
|
|
/**
|
2014-11-10 10:30:52 +01:00
|
|
|
* Interface for wizards providing a setup and requirements
|
2014-09-29 14:19:05 +02:00
|
|
|
*/
|
|
|
|
interface SetupWizard
|
|
|
|
{
|
|
|
|
/**
|
2014-11-10 10:30:52 +01:00
|
|
|
* Return the setup for this wizard
|
2014-09-29 14:19:05 +02:00
|
|
|
*
|
2014-11-10 10:30:52 +01:00
|
|
|
* @return Setup
|
2014-09-29 14:19:05 +02:00
|
|
|
*/
|
2014-11-10 10:30:52 +01:00
|
|
|
public function getSetup();
|
2014-09-29 14:19:05 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the requirements of this wizard
|
|
|
|
*
|
|
|
|
* @return Requirements
|
|
|
|
*/
|
|
|
|
public function getRequirements();
|
|
|
|
}
|