data = $data;
}
public function apply()
{
$config = array();
foreach ($this->data['generalConfig'] as $sectionAndPropertyName => $value) {
list($section, $property) = explode('_', $sectionAndPropertyName, 2);
$config[$section][$property] = $value;
}
if ($config['global']['config_backend'] === 'db') {
$config['global']['config_resource'] = $this->data['resourceName'];
}
try {
Config::fromArray($config)
->setConfigFile(Config::resolvePath('config.ini'))
->saveIni();
} catch (Exception $e) {
$this->error = $e;
return false;
}
$this->error = false;
return true;
}
public function getSummary()
{
$pageTitle = '
' . mt('setup', 'Application Configuration', 'setup.page.title') . '
';
$generalTitle = '' . t('General', 'app.config') . '
';
$loggingTitle = '' . t('Logging', 'app.config') . '
';
$generalHtml = ''
. ''
. '- ' . ($this->data['generalConfig']['global_show_stacktraces']
? t('An exception\'s stacktrace is shown to every user by default.')
: t('An exception\'s stacktrace is hidden from every user by default.')
) . '
'
. '- ' . sprintf(
$this->data['generalConfig']['global_config_backend'] === 'ini' ? sprintf(
t('Preferences will be stored per user account in INI files at: %s'),
Config::resolvePath('preferences')
) : t('Preferences will be stored using a database.')
) . '
'
. '
';
$type = $this->data['generalConfig']['logging_log'];
if ($type === 'none') {
$loggingHtml = '' . mt('setup', 'Logging will be disabled.') . '
';
} else {
$level = $this->data['generalConfig']['logging_level'];
switch ($type) {
case 'php':
$typeDescription = t('Webserver Log', 'app.config.logging.type');
$typeSpecificHtml = '';
break;
case 'syslog':
$typeDescription = 'Syslog';
$typeSpecificHtml = '' . t('Application Prefix') . ' | '
. '' . $this->data['generalConfig']['logging_application'] . ' | ';
break;
case 'file':
$typeDescription = t('File', 'app.config.logging.type');
$typeSpecificHtml = '' . t('Filepath') . ' | '
. '' . $this->data['generalConfig']['logging_file'] . ' | ';
break;
}
$loggingHtml = ''
. ''
. ''
. ''
. '' . t('Type', 'app.config.logging') . ' | '
. '' . $typeDescription . ' | '
. '
'
. ''
. '' . t('Level', 'app.config.logging') . ' | '
. '' . ($level === Logger::$levels[Logger::ERROR] ? t('Error', 'app.config.logging.level') : (
$level === Logger::$levels[Logger::WARNING] ? t('Warning', 'app.config.logging.level') : (
$level === Logger::$levels[Logger::INFO] ? t('Information', 'app.config.logging.level') : (
t('Debug', 'app.config.logging.level')
)
)
)) . ' | '
. '
'
. ''
. $typeSpecificHtml
. '
'
. ''
. '
';
}
return $pageTitle . '' . $generalTitle . $generalHtml . '
'
. '' . $loggingTitle . $loggingHtml . '
';
}
public function getReport()
{
if ($this->error === false) {
return array(sprintf(
mt('setup', 'General configuration has been successfully written to: %s'),
Config::resolvePath('config.ini')
));
} elseif ($this->error !== null) {
return array(
sprintf(
mt('setup', 'General configuration could not be written to: %s. An error occured:'),
Config::resolvePath('config.ini')
),
sprintf(mt('setup', 'ERROR: %s'), IcingaException::describe($this->error))
);
}
}
}