2012-08-28 06:37:58 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Do authentication of users and session management
|
|
|
|
*
|
|
|
|
* @category DMS
|
2013-02-14 11:10:53 +00:00
|
|
|
* @package SeedDMS
|
2012-08-28 06:37:58 +00:00
|
|
|
* @license GPL 2
|
|
|
|
* @version @version@
|
|
|
|
* @author Markus Westphal, Malcolm Cowe, Uwe Steinmann <uwe@steinmann.cx>
|
|
|
|
* @copyright Copyright (C) 2012 Uwe Steinmann
|
|
|
|
* @version Release: @package_version@
|
|
|
|
*/
|
|
|
|
|
|
|
|
include("../inc/inc.Settings.php");
|
|
|
|
include("../inc/inc.DBInit.php");
|
|
|
|
include("../inc/inc.Language.php");
|
|
|
|
include("../inc/inc.ClassUI.php");
|
|
|
|
include("../inc/inc.Authentication.php");
|
|
|
|
|
2012-12-14 08:34:56 +00:00
|
|
|
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
2016-03-16 19:09:48 +00:00
|
|
|
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
2012-12-14 08:34:56 +00:00
|
|
|
if($view) {
|
2016-03-16 19:09:48 +00:00
|
|
|
$view->setParam('passwordstrength', $settings->_passwordStrength);
|
|
|
|
$view($_GET);
|
2012-12-14 08:34:56 +00:00
|
|
|
exit;
|
|
|
|
}
|
2012-08-28 06:37:58 +00:00
|
|
|
|
|
|
|
?>
|