seeddms-code/install/index.php
Uwe Steinmann 5b53df6356 no need to explicitly load the english translations
the default language is now propperly set in the
inc/inc.ClassSettings.php
2015-08-07 09:13:06 +02:00

21 lines
652 B
PHP

<?php
define("SEEDDMS_INSTALL", "on");
include("../inc/inc.Settings.php");
$settings = new Settings();
$rootDir = realpath ("..");
$settings->_rootDir = $rootDir.'/';
$theme = "blue";
include("../inc/inc.Language.php");
include("../inc/inc.ClassUI.php");
UI::htmlStartPage("INSTALL");
UI::contentHeading("SeedDMS Installation...");
UI::contentContainerStart();
echo "<h2>".getMLText('settings_install_welcome_title')."</h2>";
echo "<div style=\"width: 600px;\">".getMLText('settings_install_welcome_text')."</div>";
echo '<p><a href="install.php">' . getMLText("settings_start_install") . '</a></p>';
UI::contentContainerEnd();
UI::htmlEndPage();
?>