seeddms-code/install/index.php

23 lines
715 B
PHP
Raw Normal View History

2011-07-27 07:54:46 +00:00
<?php
define("SEEDDMS_INSTALL", "on");
2011-07-27 07:54:46 +00:00
include("../inc/inc.Settings.php");
$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");
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();
?>