seeddms-code/out/out.UsrView.php

83 lines
2.5 KiB
PHP
Raw Normal View History

2010-10-29 13:19:51 +00:00
<?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.DBInit.php");
include("../inc/inc.Language.php");
include("../inc/inc.ClassUI.php");
include("../inc/inc.Authentication.php");
if ($user->isGuest()) {
UI::exitError(getMLText("my_account"),getMLText("access_denied"));
}
2010-10-29 13:19:51 +00:00
if (!$settings->_enableUsersView) {
UI::exitError(getMLText("my_account"),getMLText("access_denied"));
}
$users = $dms->getAllUsers();
2010-10-29 13:19:51 +00:00
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) {
2010-12-10 13:41:00 +00:00
if ($currUser->isGuest())
2010-10-29 13:19:51 +00:00
continue;
if ($currUser->isHidden()=="1") continue;
echo "<tr>\n";
print "<td>".htmlspecialchars($currUser->getFullName())."</td>";
2010-10-29 13:19:51 +00:00
2011-12-06 12:29:39 +00:00
print "<td><a href=\"mailto:".htmlspecialchars($currUser->getEmail())."\">".htmlspecialchars($currUser->getEmail())."</a></td>";
print "<td>".htmlspecialchars($currUser->getComment())."</td>";
2010-10-29 13:19:51 +00:00
if ($settings->_enableUserImage){
print "<td>";
if ($currUser->hasImage()) print "<img src=\"".$settings->_httpRoot . "out/out.UserImage.php?userid=".$currUser->getId()."\">";
2010-10-29 13:19:51 +00:00
else printMLText("no_user_image");
print "</td>";
}
echo "</tr>\n";
}
echo "</table>\n";
UI::contentContainerEnd();
UI::htmlEndPage();
?>