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
|
|
|
*/ ?>
|
2012-08-10 11:06:29 +00:00
|
|
|
|
2004-10-16 00:28:17 +00:00
|
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper" width="400">
|
2006-03-05 11:18:16 +00:00
|
|
|
|
|
|
|
<?
|
2012-08-10 11:06:29 +00:00
|
|
|
$query = "select *
|
|
|
|
from `orginfo`,`org`
|
|
|
|
where `orginfo`.`id`=`org`.`orgid`
|
|
|
|
and `org`.`memid`='".intval($_SESSION['profile']['id'])."'";
|
|
|
|
|
|
|
|
$res = mysql_query($query);
|
|
|
|
while($row = mysql_fetch_assoc($res))
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td colspan="3" class="title"><?=_("Organisation")?></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Organisation Name")?>:</td>
|
|
|
|
<td colspan="2" class="DataTD" ><b><?=$row['O']?></b></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Contact Email")?>:</td>
|
|
|
|
<td colspan="2" class="DataTD"><?=($row['contact'])?></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Town/Suburb")?>:</td>
|
|
|
|
<td colspan="2" class="DataTD"><?=($row['L'])?></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("State/Province")?>:</td>
|
|
|
|
<td colspan="2" class="DataTD"><?=($row['ST'])?></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Country")?>:</td>
|
|
|
|
<td colspan="2" class="DataTD"><?=($row['C'])?></td>
|
|
|
|
</tr>
|
|
|
|
<?
|
|
|
|
|
|
|
|
//domain info
|
|
|
|
$query = "select `domain` from `orgdomains` where `orgid`='".intval($row['id'])."'";
|
|
|
|
$res1 = mysql_query($query);
|
|
|
|
while($domain = mysql_fetch_assoc($res1))
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Domain")?></td>
|
|
|
|
<td colspan="2" class="DataTD"><?=sanitizeHTML($domain['domain'])?></td>
|
|
|
|
</tr>
|
|
|
|
<?
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Administrator")?></td>
|
|
|
|
<td class="DataTD"><?=_("Master Account")?></td>
|
|
|
|
<td class="DataTD"><?=_("Department")?></td>
|
|
|
|
</tr>
|
|
|
|
<?
|
|
|
|
|
|
|
|
//org admins
|
|
|
|
$query = "select * from `org` where `orgid`='".intval($row['id'])."'";
|
|
|
|
$res2 = mysql_query($query);
|
|
|
|
while($org = mysql_fetch_assoc($res2))
|
2006-03-05 11:18:16 +00:00
|
|
|
{
|
2012-08-10 11:06:29 +00:00
|
|
|
$user = mysql_fetch_assoc(mysql_query("select * from `users` where `id`='".intval($org['memid'])."'"));
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><a href='mailto:<?=$user['email']?>'><?=($user['fname'])?> <?=($user['lname'])?></a></td>
|
|
|
|
<td class="DataTD"><?=($org['masteracc'])?></td>
|
|
|
|
<td class="DataTD"><?=($org['OU'])?></td>
|
|
|
|
</tr>
|
|
|
|
<?
|
|
|
|
|
|
|
|
if(intval($org['masteracc']) === 1 &&
|
|
|
|
intval($org['memid']) === intval($_SESSION['profile']['id']))
|
|
|
|
{
|
|
|
|
$master="account.php?id=32&orgid=".intval($row['id']);
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td colspan="3" class="DataTD"><a href="<?=$master ?>"><?=_("Edit")?></a></td>
|
|
|
|
</tr>
|
|
|
|
<?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} ?>
|
2004-10-16 00:28:17 +00:00
|
|
|
</table>
|