26 lines
578 B
PHP
26 lines
578 B
PHP
<?php
|
|
/**
|
|
* Observium
|
|
*
|
|
* This file is part of Observium.
|
|
*
|
|
* @package observium
|
|
* @subpackage web
|
|
* @copyright (C) Adam Armstrong
|
|
*
|
|
*/
|
|
|
|
if ($_SESSION['userlevel'] < 10) {
|
|
print_error_permission();
|
|
return;
|
|
}
|
|
|
|
print_warning('This is a dump of your custom Observium configuration. To adjust it, please use the <a href="/settings/">configuration editor</a> and/or modify your <strong>config.php</strong> file.');
|
|
|
|
$defined_config = get_defined_settings();
|
|
load_sqlconfig($defined_config);
|
|
print_vars($defined_config);
|
|
unset($defined_config);
|
|
|
|
// EOF
|