2004-10-16 00:28:17 +00:00
|
|
|
<? /*
|
2008-04-06 19:45:09 +00:00
|
|
|
LibreSSL - CAcert web application
|
|
|
|
Copyright (C) 2004-2008 CAcert Inc.
|
2004-10-16 00:28:17 +00:00
|
|
|
|
2008-04-06 19:45:09 +00:00
|
|
|
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; version 2 of the License.
|
2004-10-16 00:28:17 +00:00
|
|
|
|
2008-04-06 19:45:09 +00:00
|
|
|
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.
|
2004-10-16 00:28:17 +00:00
|
|
|
|
2008-04-06 19:45:09 +00:00
|
|
|
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2004-10-16 00:28:17 +00:00
|
|
|
*/ ?>
|
|
|
|
<?
|
2008-01-03 10:08:24 +00:00
|
|
|
$query = "select * from `orginfo` where `id`='".intval($_REQUEST['orgid'])."'";
|
2004-10-16 00:28:17 +00:00
|
|
|
$row = mysql_fetch_assoc(mysql_query($query));
|
|
|
|
?>
|
|
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper" width="500">
|
|
|
|
<tr>
|
2007-03-26 19:49:01 +00:00
|
|
|
<td colspan="5" class="title"><? printf(_("%s's Administrators"), $row['O']); ?> (<a href="account.php?id=33&orgid=<?=$row['id']?>"><?=_("Add")?></a>)</td>
|
2004-10-16 00:28:17 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Administrator")?></td>
|
|
|
|
<td class="DataTD"><?=_("Master Account")?></td>
|
|
|
|
<td class="DataTD"><?=_("Department")?></td>
|
|
|
|
<td class="DataTD"><?=_("Comments")?></td>
|
|
|
|
<td class="DataTD"><?=_("Delete")?></td>
|
|
|
|
</tr>
|
|
|
|
<?
|
2007-03-26 19:49:01 +00:00
|
|
|
$query = "select * from `org` where `orgid`='".intval($_REQUEST['orgid'])."'";
|
2004-10-16 00:28:17 +00:00
|
|
|
$res = mysql_query($query);
|
|
|
|
while($row = mysql_fetch_assoc($res))
|
|
|
|
{
|
2008-09-03 17:43:31 +00:00
|
|
|
$user = mysql_fetch_assoc(mysql_query("select * from `users` where `id`='".intval($row['memid'])."'"));
|
2004-10-16 00:28:17 +00:00
|
|
|
?>
|
|
|
|
<tr>
|
2011-12-27 11:52:41 +00:00
|
|
|
<td class="DataTD"><a href='mailto:<?=sanitizeHTML($user['email'])?>'><?=sanitizeHTML($user['fname'])?> <?=sanitizeHTML($user['lname'])?></a></td>
|
2008-09-03 18:05:10 +00:00
|
|
|
<td class="DataTD"><?=($row['masteracc'])?></a></td>
|
2011-12-27 11:52:41 +00:00
|
|
|
<td class="DataTD"><?=sanitizeHTML($row['OU'])?></a></td>
|
|
|
|
<td class="DataTD"><?=sanitizeHTML($row['comments'])?></a></td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<? if($row['masteracc'] == 0 || $_SESSION['profile']['orgadmin'] == 1) { ?>
|
2007-03-26 19:49:01 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=34&orgid=<?=$row['orgid']?>&memid=<?=$row['memid']?>"><?=_("Delete")?></a></td>
|
2004-10-16 00:28:17 +00:00
|
|
|
<? } else { ?>
|
|
|
|
<td class="DataTD">N/A</td>
|
|
|
|
<? } ?>
|
|
|
|
</tr>
|
|
|
|
<? } ?>
|
|
|
|
</table>
|