45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
namespace Icinga\Form\Setup;
|
|
|
|
use Icinga\Application\Icinga;
|
|
use Icinga\Web\Form;
|
|
use Icinga\Web\Form\Validator\TokenValidator;
|
|
|
|
/**
|
|
* Wizard page to authenticate and welcome the user
|
|
*/
|
|
class WelcomePage extends Form
|
|
{
|
|
/**
|
|
* Initialize this page
|
|
*/
|
|
public function init()
|
|
{
|
|
$this->setName('setup_welcome');
|
|
$this->setViewScript('form/setup-welcome.phtml');
|
|
}
|
|
|
|
/**
|
|
* @see Form::createElements()
|
|
*/
|
|
public function createElements(array $formData)
|
|
{
|
|
$this->addElement(
|
|
'text',
|
|
'token',
|
|
array(
|
|
'required' => true,
|
|
'label' => t('Setup Token'),
|
|
'description' => t(
|
|
'For security reasons we need to ensure that you are permitted to run this wizard.'
|
|
. ' Please provide a token by following the instructions below.'
|
|
),
|
|
'validators' => array(new TokenValidator(Icinga::app()->getConfigDir() . '/setup.token'))
|
|
)
|
|
);
|
|
}
|
|
}
|