2011-07-27 07:54:46 +00:00
|
|
|
<?php
|
2013-02-14 11:10:53 +00:00
|
|
|
define("SEEDDMS_INSTALL", "on");
|
2011-07-27 07:54:46 +00:00
|
|
|
include("../inc/inc.Settings.php");
|
2012-01-17 08:32:34 +00:00
|
|
|
$settings = new Settings();
|
|
|
|
$rootDir = realpath ("..");
|
|
|
|
$settings->_rootDir = $rootDir.'/';
|
|
|
|
|
2013-02-20 08:43:39 +00:00
|
|
|
$theme = "blue";
|
2011-07-27 07:54:46 +00:00
|
|
|
include("../inc/inc.Language.php");
|
2013-03-26 21:05:23 +00:00
|
|
|
include "../languages/en_GB/lang.inc";
|
2011-07-27 07:54:46 +00:00
|
|
|
include("../inc/inc.ClassUI.php");
|
2013-03-26 21:05:23 +00:00
|
|
|
$LANG['en_GB'] = $text;
|
2011-07-27 07:54:46 +00:00
|
|
|
|
|
|
|
UI::htmlStartPage("INSTALL");
|
2013-02-14 11:10:53 +00:00
|
|
|
UI::contentHeading("SeedDMS Installation...");
|
2011-07-27 07:54:46 +00:00
|
|
|
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();
|
|
|
|
?>
|