2013-05-15 09:39:39 +00:00
|
|
|
<? /*
|
|
|
|
LibreSSL - CAcert web application
|
|
|
|
Copyright (C) 2004-2008 CAcert Inc.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/ ?>
|
|
|
|
<?
|
|
|
|
include_once($_SESSION['_config']['filepath'].'/includes/notary.inc.php');
|
2014-03-24 11:37:35 +00:00
|
|
|
|
2013-05-15 09:39:39 +00:00
|
|
|
if ($_SESSION['profile']['admin'] != 1 || !array_key_exists('userid',$_REQUEST) || intval($_REQUEST['userid']) < 1) {
|
|
|
|
|
|
|
|
echo _('You do not have access to this page');
|
|
|
|
|
2014-03-24 11:37:35 +00:00
|
|
|
} else {
|
2013-05-15 09:39:39 +00:00
|
|
|
$user_id = intval($_REQUEST['userid']);
|
|
|
|
$query = "select * from `users` where `id`='$user_id' and `users`.`deleted`=0";
|
|
|
|
$res = mysql_query($query);
|
|
|
|
if(mysql_num_rows($res) <= 0)
|
|
|
|
{
|
2014-06-07 09:15:39 +00:00
|
|
|
echo _("I'm sorry, the user you were looking for seems to have disappeared! Bad things are afoot!");
|
2013-05-15 09:39:39 +00:00
|
|
|
} else {
|
|
|
|
$row = mysql_fetch_assoc($res);
|
|
|
|
?>
|
|
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
|
|
<tr>
|
|
|
|
<td colspan="5" class="title"><?=_('CCA agreement of').' '.sanitizeHTML($row['fname']).' '.sanitizeHTML($row['mname']).' '.sanitizeHTML($row['lname'])?></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
2014-03-24 11:37:35 +00:00
|
|
|
|
2013-05-15 09:39:39 +00:00
|
|
|
<br>
|
|
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><b><?=_('CCA type')?></b></td>
|
|
|
|
<td class="DataTD"><b><?=_('Date')?></b></td>
|
|
|
|
<td class="DataTD"><b><?=_('Method')?></b></td>
|
|
|
|
<td class="DataTD"><b><?=_('Type')?></b></td>
|
|
|
|
</tr>
|
|
|
|
<?
|
2014-06-07 09:15:39 +00:00
|
|
|
$data=get_first_user_agreement($user_id, 'CCA', 1);
|
2013-05-15 09:39:39 +00:00
|
|
|
if (!isset($data['active'])){
|
|
|
|
$type='';
|
2014-06-07 09:15:39 +00:00
|
|
|
}else{
|
2013-05-15 09:39:39 +00:00
|
|
|
$type=_('active');
|
2014-06-07 09:15:39 +00:00
|
|
|
}
|
2013-05-15 09:39:39 +00:00
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_('First active CCA')?></td>
|
2014-03-24 11:37:35 +00:00
|
|
|
<td class="DataTD"><?=isset($data['date'])?$data['date']:''?></td>
|
|
|
|
<td class="DataTD"><?=isset($data['method'])?$data['method']:''?></td>
|
2013-05-15 09:39:39 +00:00
|
|
|
<td class="DataTD"><?=$type?></td>
|
|
|
|
</tr>
|
|
|
|
<?
|
2014-06-07 09:15:39 +00:00
|
|
|
$data=get_first_user_agreement($user_id, 'CCA', 0);
|
2013-05-15 09:39:39 +00:00
|
|
|
if (!isset($data['active'])){
|
|
|
|
$type="";
|
|
|
|
}else{
|
|
|
|
$type=_('passive');
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_('First passive CCA')?></td>
|
2014-03-24 11:37:35 +00:00
|
|
|
<td class="DataTD"><?=isset($data['date'])?$data['date']:''?></td>
|
|
|
|
<td class="DataTD"><?=isset($data['method'])?$data['method']:''?></td>
|
2013-05-15 09:39:39 +00:00
|
|
|
<td class="DataTD"><?=$type?></td>
|
|
|
|
</tr>
|
|
|
|
<?
|
2014-06-07 09:15:39 +00:00
|
|
|
$data=get_last_user_agreement($user_id, 'CCA');
|
2013-05-15 09:39:39 +00:00
|
|
|
if (!isset($data['active'])){
|
2014-06-07 09:15:39 +00:00
|
|
|
$type="";
|
|
|
|
}elseif($data['active']==1){
|
|
|
|
$type=_('active');
|
|
|
|
}else{
|
|
|
|
$type=_('passive');
|
|
|
|
}
|
2013-05-15 09:39:39 +00:00
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_('Last CCA')?></td>
|
2014-03-24 11:37:35 +00:00
|
|
|
<td class="DataTD"><?=isset($data['date'])?$data['date']:''?></td>
|
|
|
|
<td class="DataTD"><?=isset($data['method'])?$data['method']:''?></td>
|
2013-05-15 09:39:39 +00:00
|
|
|
<td class="DataTD"><?=$type?></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
2014-03-24 11:37:35 +00:00
|
|
|
<tr>
|
2013-05-15 09:39:39 +00:00
|
|
|
<?
|
|
|
|
if ($_SESSION['profile']['admin'] == 1 && array_key_exists('userid',$_REQUEST) && intval($_REQUEST['userid']) > 0) {
|
|
|
|
?>
|
2014-06-07 09:15:39 +00:00
|
|
|
<tr><td colspan="3" class="DataTD"><a href="account.php?id=43&userid=<?=intval($user_id)?>">back</a></td></tr>
|
2014-03-24 11:37:35 +00:00
|
|
|
<? }
|
2013-05-15 09:39:39 +00:00
|
|
|
?> </table>
|
|
|
|
<?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|