Dieser Commit ist enthalten in:
Commit
5dba45ab12
327 geänderte Dateien mit 38796 neuen und 0 gelöschten Zeilen
26
refresh_dblist.php
Normale Datei
26
refresh_dblist.php
Normale Datei
|
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
// Konfigurationsdateien, die aktualisiert werden sollen
|
||||
// configurations to update
|
||||
// mehrere Dateien so angeben | enter more than one configurationsfile like this
|
||||
// $configurationfiles=array('mysqldumper','db2');
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
$configurationfiles=array(
|
||||
'mysqldumper'
|
||||
);
|
||||
|
||||
define('APPLICATION_PATH',realpath(dirname(__FILE__)));
|
||||
chdir(APPLICATION_PATH);
|
||||
include_once ( APPLICATION_PATH . '/inc/header.php' );
|
||||
include_once ( APPLICATION_PATH . '/inc/functions.php' );
|
||||
$config['language']='en';
|
||||
$config['theme']="msd";
|
||||
$config['files']['iconpath']='css/' . $config['theme'] . '/icons/';
|
||||
|
||||
foreach ($configurationfiles as $conf)
|
||||
{
|
||||
$config['config_file']=$conf;
|
||||
include ( $config['paths']['config'] . $conf . '.php' );
|
||||
GetLanguageArray();
|
||||
SetDefault();
|
||||
}
|
||||
?>
|
||||
Laden …
Tabelle hinzufügen
Einen Link hinzufügen
In neuem Issue referenzieren