mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-31 01:34:09 +02:00
This commit summarizes the bugfixes made in this branch. As the frontend the fixes required a lot of stuff to be fixed afterwards and #4602 was used as a larger example regression test, this affects a few tickets: - (Bug 4491) Frontend tests will hang randomly: CasperJS now operates on the installed version, so this shouldn't happen anymore - (Bug 4602) Configuration Interface - Authentication: Backends moved when pushing enter: The authentication interface is reworked and does not persist a state over pages - (Bug 4605) /tmp should not be the default log path: Now it is the application relative var/log path - (Bug 4606) Configuration: Show message that changes were saved successfully: Implemented and tested with casperjs - (Bug 4641) Installation/Testing fix configure/make: This has been reworked - (Bug 4642) Allow Application placeholder in config: This was required for implementimg 4605 - (Bug 4643) Application doesn't work with older Zend Versions: A fallback __call has been implemented for this refs #4491 refs #4602 refs #4605 refs #4606 refs #4641 refs #4642 refs #4643
34 lines
1.8 KiB
Markdown
34 lines
1.8 KiB
Markdown
# Application and Module Configuration
|
|
|
|
## Basic usage
|
|
|
|
The \Icinga\Application\Config class is a general purpose service to help you find, load and save
|
|
configuration data. It is used both by the Icinga 2 Web modules and the framework itself. With
|
|
INI files as source it enables you to store configuration in a familiar format. Icinga 2 Web
|
|
defines some configuration files for its own purposes. Please note that both modules and framework
|
|
keep their main configuration in the INI file called config.ini. Here's some example code:
|
|
|
|
<?php
|
|
use \Icinga\Application\Config as IcingaConfig;
|
|
|
|
// Retrieve the default timezone using 'Europe/Berlin' in case it is not set
|
|
IcingaConfig::app()->global->get('defaultTimezone', 'Europe/Berlin');
|
|
|
|
// If you don't pass a configuration name to IcingaConfig::app it tries to load values from the
|
|
// application's config.ini. For using other files you have to pass this parameter though.
|
|
// The following example loads a section from the application's authentication.ini:
|
|
IcingaConfig::app('authentication')->get('ldap-authentication');
|
|
|
|
// If you don't pass a configuration name to IcingaConfig::module it tries to load values from
|
|
// the module's config.ini. For using other files you have to pass this parameter though.
|
|
// The following example loads values from the example module's extra.ini:
|
|
IcingaConfig::module('example', 'extra')->logging->get('enabled', true);
|
|
|
|
## Reload from disk
|
|
|
|
If you want to force reading a configuration from disk (i.e. after you modified it), you can use the $fromDisk flag in
|
|
the IcingaConfig::app/IcingaConfig::module call:
|
|
|
|
IcingaConfig::app('authentication', true)-> ... // read authentication from disk
|
|
IcingaConfig::module('example', 'extra', true)->... // read module configuration from disk
|