mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
72defaaacf
by LetoDMS_DMS
85 lines
2.6 KiB
PHP
85 lines
2.6 KiB
PHP
<?php
|
|
// MyDMS. Document Management System
|
|
// Copyright (C) 2010 Matteo Lucarelli
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
include("../inc/inc.Settings.php");
|
|
include("../inc/inc.ClassDMS.php");
|
|
include("../inc/inc.DBAccess.php");
|
|
include("../inc/inc.DBInit.php");
|
|
include("../inc/inc.Language.php");
|
|
include("../inc/inc.ClassUI.php");
|
|
include("../inc/inc.Authentication.php");
|
|
|
|
if ($user->getID() == $settings->_guestID) {
|
|
UI::exitError(getMLText("my_account"),getMLText("access_denied"));
|
|
}
|
|
|
|
if (!$settings->_enableUsersView) {
|
|
UI::exitError(getMLText("my_account"),getMLText("access_denied"));
|
|
}
|
|
|
|
$users = $dms->getAllUsers();
|
|
|
|
if (is_bool($users)) {
|
|
UI::exitError(getMLText("my_account"),getMLText("internal_error"));
|
|
}
|
|
|
|
UI::htmlStartPage(getMLText("my_account"));
|
|
UI::globalNavigation();
|
|
UI::pageNavigation(getMLText("my_account"), "my_account");
|
|
|
|
UI::contentHeading(getMLText("users"));
|
|
UI::contentContainerStart();
|
|
|
|
echo "<table class=\"userView\">\n";
|
|
echo "<thead>\n<tr>\n";
|
|
echo "<th>".getMLText("name")."</th>\n";
|
|
echo "<th>".getMLText("email")."</th>\n";
|
|
echo "<th>".getMLText("comment")."</th>\n";
|
|
if ($settings->_enableUserImage) echo "<th>".getMLText("user_image")."</th>\n";
|
|
echo "</tr>\n</thead>\n";
|
|
|
|
foreach ($users as $currUser) {
|
|
|
|
if (($currUser->getID() == $settings->_adminID) || ($currUser->getID() == $settings->_guestID))
|
|
continue;
|
|
|
|
if ($currUser->isHidden()=="1") continue;
|
|
|
|
echo "<tr>\n";
|
|
|
|
print "<td>".$currUser->getFullName()."</td>";
|
|
|
|
print "<td><a href=\"mailto:".$currUser->getEmail()."\">".$currUser->getEmail()."</a></td>";
|
|
print "<td>".$currUser->getComment()."</td>";
|
|
|
|
if ($settings->_enableUserImage){
|
|
print "<td>";
|
|
if ($currUser->hasImage()) print "<img src=\"".$settings->_httpRoot . "out/out.UserImage.php?userid=".$currUser->getId()."\">";
|
|
else printMLText("no_user_image");
|
|
print "</td>";
|
|
}
|
|
|
|
echo "</tr>\n";
|
|
}
|
|
|
|
echo "</table>\n";
|
|
|
|
UI::contentContainerEnd();
|
|
UI::htmlEndPage();
|
|
?>
|