icingaweb2/modules/setup/application/forms/PreferencesPage.php

81 lines
2.2 KiB
PHP
Raw Normal View History

2014-09-29 12:27:26 +02:00
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | http://www.gnu.org/licenses/gpl-2.0.txt */
2014-09-29 12:27:26 +02:00
namespace Icinga\Module\Setup\Forms;
2014-09-29 12:27:26 +02:00
use Icinga\Web\Form;
use Icinga\Application\Platform;
/**
* Wizard page to choose a preference backend
*/
class PreferencesPage extends Form
{
/**
* Initialize this page
*/
public function init()
{
$this->setName('setup_preferences_type');
}
/**
* Pre-select "db" as preference backend and add a hint to the select element
*
* @return self
*/
public function showDatabaseNote()
{
$this->getElement('store')
2014-09-29 12:27:26 +02:00
->setValue('db')
->setDescription(
$this->translate(
'Note that choosing "Database" causes Icinga Web 2 to use the same database as for authentication.'
)
2014-09-29 12:27:26 +02:00
);
return $this;
}
/**
* @see Form::createElements()
*/
public function createElements(array $formData)
{
2014-11-11 15:27:14 +01:00
$this->addElement(
'note',
'title',
array(
'value' => $this->translate('Preferences', 'setup.page.title'),
'decorators' => array(
'ViewHelper',
array('HtmlTag', array('tag' => 'h2'))
2014-11-11 15:27:14 +01:00
)
)
);
2014-09-29 12:27:26 +02:00
$this->addElement(
'note',
'description',
array(
'value' => $this->translate('Please choose how Icinga Web 2 should store user preferences.')
2014-09-29 12:27:26 +02:00
)
);
$storageTypes = array();
$storageTypes['ini'] = $this->translate('File System (INI Files)');
if (Platform::hasMysqlSupport() || Platform::hasPostgresqlSupport()) {
$storageTypes['db'] = $this->translate('Database');
2014-09-29 12:27:26 +02:00
}
$storageTypes['none'] = $this->translate('Don\'t Store Preferences');
2014-09-29 12:27:26 +02:00
$this->addElement(
'select',
'store',
2014-09-29 12:27:26 +02:00
array(
'required' => true,
'label' => $this->translate('User Preference Storage Type'),
2014-09-29 12:27:26 +02:00
'multiOptions' => $storageTypes
)
);
}
}