Skip to content

Commit

Permalink
Rename Icinga\Module\Setup\Form to Icinga\Module\Setup\Forms
Browse files Browse the repository at this point in the history
refs #7553
  • Loading branch information
Johannes Meyer committed Nov 14, 2014
1 parent 775c20d commit d64ec0a
Show file tree
Hide file tree
Showing 16 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion modules/monitoring/library/Monitoring/MonitoringWizard.php
Expand Up @@ -12,7 +12,7 @@
use Icinga\Module\Setup\Requirements;
use Icinga\Module\Setup\Utils\MakeDirStep;
use Icinga\Module\Setup\Utils\EnableModuleStep;
use Icinga\Module\Setup\Form\SummaryPage;
use Icinga\Module\Setup\Forms\SummaryPage;
use Icinga\Module\Monitoring\Form\Setup\WelcomePage;
use Icinga\Module\Monitoring\Form\Setup\BackendPage;
use Icinga\Module\Monitoring\Form\Setup\InstancePage;
Expand Down
2 changes: 1 addition & 1 deletion modules/setup/application/forms/AdminAccountPage.php
Expand Up @@ -2,7 +2,7 @@
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}

namespace Icinga\Module\Setup\Form;
namespace Icinga\Module\Setup\Forms;

use Exception;
use LogicException;
Expand Down
2 changes: 1 addition & 1 deletion modules/setup/application/forms/AuthBackendPage.php
Expand Up @@ -2,7 +2,7 @@
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}

namespace Icinga\Module\Setup\Form;
namespace Icinga\Module\Setup\Forms;

use Icinga\Application\Config;
use Icinga\Web\Form;
Expand Down
2 changes: 1 addition & 1 deletion modules/setup/application/forms/AuthenticationPage.php
Expand Up @@ -2,7 +2,7 @@
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}

namespace Icinga\Module\Setup\Form;
namespace Icinga\Module\Setup\Forms;

use Icinga\Web\Form;
use Icinga\Application\Platform;
Expand Down
2 changes: 1 addition & 1 deletion modules/setup/application/forms/DatabaseCreationPage.php
Expand Up @@ -2,7 +2,7 @@
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}

namespace Icinga\Module\Setup\Form;
namespace Icinga\Module\Setup\Forms;

use PDOException;
use Icinga\Web\Form;
Expand Down
2 changes: 1 addition & 1 deletion modules/setup/application/forms/DbResourcePage.php
Expand Up @@ -2,7 +2,7 @@
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}

namespace Icinga\Module\Setup\Form;
namespace Icinga\Module\Setup\Forms;

use PDOException;
use Icinga\Web\Form;
Expand Down
2 changes: 1 addition & 1 deletion modules/setup/application/forms/GeneralConfigPage.php
Expand Up @@ -2,7 +2,7 @@
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}

namespace Icinga\Module\Setup\Form;
namespace Icinga\Module\Setup\Forms;

use Icinga\Web\Form;
use Icinga\Forms\Config\General\LoggingConfigForm;
Expand Down
Expand Up @@ -2,7 +2,7 @@
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}

namespace Icinga\Module\Setup\Form;
namespace Icinga\Module\Setup\Forms;

use Icinga\Application\Config;
use Icinga\Web\Form;
Expand Down
2 changes: 1 addition & 1 deletion modules/setup/application/forms/LdapDiscoveryPage.php
Expand Up @@ -2,7 +2,7 @@
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}

namespace Icinga\Module\Setup\Form;
namespace Icinga\Module\Setup\Forms;

use Icinga\Web\Form;
use Icinga\Forms\LdapDiscoveryForm;
Expand Down
2 changes: 1 addition & 1 deletion modules/setup/application/forms/LdapResourcePage.php
Expand Up @@ -2,7 +2,7 @@
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}

namespace Icinga\Module\Setup\Form;
namespace Icinga\Module\Setup\Forms;

use Icinga\Web\Form;
use Icinga\Forms\Config\Resource\LdapResourceForm;
Expand Down
2 changes: 1 addition & 1 deletion modules/setup/application/forms/ModulePage.php
Expand Up @@ -2,7 +2,7 @@
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}

namespace Icinga\Module\Setup\Form;
namespace Icinga\Module\Setup\Forms;

use InvalidArgumentException;
use Icinga\Application\Icinga;
Expand Down
2 changes: 1 addition & 1 deletion modules/setup/application/forms/PreferencesPage.php
Expand Up @@ -2,7 +2,7 @@
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}

namespace Icinga\Module\Setup\Form;
namespace Icinga\Module\Setup\Forms;

use Icinga\Web\Form;
use Icinga\Application\Platform;
Expand Down
2 changes: 1 addition & 1 deletion modules/setup/application/forms/RequirementsPage.php
Expand Up @@ -2,7 +2,7 @@
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}

namespace Icinga\Module\Setup\Form;
namespace Icinga\Module\Setup\Forms;

use Icinga\Web\Form;
use Icinga\Module\Setup\Requirements;
Expand Down
2 changes: 1 addition & 1 deletion modules/setup/application/forms/SummaryPage.php
Expand Up @@ -2,7 +2,7 @@
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}

namespace Icinga\Module\Setup\Form;
namespace Icinga\Module\Setup\Forms;

use Icinga\Web\Form;

Expand Down
2 changes: 1 addition & 1 deletion modules/setup/application/forms/WelcomePage.php
Expand Up @@ -2,7 +2,7 @@
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}

namespace Icinga\Module\Setup\Form;
namespace Icinga\Module\Setup\Forms;

use Icinga\Application\Icinga;
use Icinga\Web\Form;
Expand Down
28 changes: 14 additions & 14 deletions modules/setup/library/Setup/WebWizard.php
Expand Up @@ -10,20 +10,20 @@
use Icinga\Web\Request;
use Icinga\Application\Config;
use Icinga\Application\Platform;
use Icinga\Module\Setup\Form\ModulePage;
use Icinga\Module\Setup\Form\WelcomePage;
use Icinga\Module\Setup\Form\SummaryPage;
use Icinga\Module\Setup\Form\DbResourcePage;
use Icinga\Module\Setup\Form\PreferencesPage;
use Icinga\Module\Setup\Form\AuthBackendPage;
use Icinga\Module\Setup\Form\AdminAccountPage;
use Icinga\Module\Setup\Form\LdapDiscoveryPage;
use Icinga\Module\Setup\Form\LdapDiscoveryConfirmPage;
use Icinga\Module\Setup\Form\LdapResourcePage;
use Icinga\Module\Setup\Form\RequirementsPage;
use Icinga\Module\Setup\Form\GeneralConfigPage;
use Icinga\Module\Setup\Form\AuthenticationPage;
use Icinga\Module\Setup\Form\DatabaseCreationPage;
use Icinga\Module\Setup\Forms\ModulePage;
use Icinga\Module\Setup\Forms\WelcomePage;
use Icinga\Module\Setup\Forms\SummaryPage;
use Icinga\Module\Setup\Forms\DbResourcePage;
use Icinga\Module\Setup\Forms\PreferencesPage;
use Icinga\Module\Setup\Forms\AuthBackendPage;
use Icinga\Module\Setup\Forms\AdminAccountPage;
use Icinga\Module\Setup\Forms\LdapDiscoveryPage;
use Icinga\Module\Setup\Forms\LdapDiscoveryConfirmPage;
use Icinga\Module\Setup\Forms\LdapResourcePage;
use Icinga\Module\Setup\Forms\RequirementsPage;
use Icinga\Module\Setup\Forms\GeneralConfigPage;
use Icinga\Module\Setup\Forms\AuthenticationPage;
use Icinga\Module\Setup\Forms\DatabaseCreationPage;
use Icinga\Module\Setup\Steps\DatabaseStep;
use Icinga\Module\Setup\Steps\GeneralConfigStep;
use Icinga\Module\Setup\Steps\ResourceStep;
Expand Down

0 comments on commit d64ec0a

Please sign in to comment.