git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_WebCongresos/trunk@2 94ccb1af-fd9d-d947-8d90-7f70ea60afc8
183 lines
5.4 KiB
PHP
183 lines
5.4 KiB
PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
<title>Documento sin título</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class = "fb-msgview-l-cover">
|
|
<?php
|
|
if ($profileHtml)
|
|
{
|
|
echo $profileHtml;
|
|
}
|
|
else
|
|
{
|
|
?>
|
|
<span class = "view-username">
|
|
<?php
|
|
if ($userinfo->userid)
|
|
{
|
|
echo CKunenaLink::GetProfileLink($fbConfig, $fmessage->userid, $msg_username);
|
|
}
|
|
else
|
|
{
|
|
echo $msg_username;
|
|
}
|
|
?>
|
|
</span>
|
|
<?php
|
|
if ( $fbConfig->userlist_usertype ) echo '<span class = "msgusertype">('.$msg_usertype.')</span>';
|
|
?>
|
|
<br/>
|
|
<?php
|
|
if ($fmessage->userid > 0)
|
|
{
|
|
echo CKunenaLink::GetProfileLink($fbConfig, $fmessage->userid, $msg_avatar);
|
|
}
|
|
else
|
|
{
|
|
echo $msg_avatar;
|
|
}
|
|
?>
|
|
|
|
<?php
|
|
$gr_title = getFBGroupName($lists["userid"]);
|
|
|
|
if ($gr_title->id > 1)
|
|
{
|
|
?>
|
|
|
|
<span class = "view-group_<?php echo $gr_title->id;?>"> <?php echo $gr_title->title; ?></span>
|
|
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
<?php if (isset($msg_personal)) { ?>
|
|
<div class = "viewcover">
|
|
<?php echo $msg_personal; ?>
|
|
</div>
|
|
<?php }?>
|
|
<div class = "viewcover">
|
|
<?php
|
|
if (isset($msg_userrank)) {
|
|
echo $msg_userrank;
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
<div class = "viewcover">
|
|
<?php
|
|
if (isset($msg_userrankimg)) {
|
|
echo $msg_userrankimg;
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
<?php
|
|
if (isset($msg_posts)) {
|
|
echo $msg_posts;
|
|
}
|
|
?>
|
|
|
|
<?php
|
|
if (isset($myGraph)) {
|
|
$myGraph->BarGraphHoriz();
|
|
}
|
|
?>
|
|
|
|
<?php
|
|
if (isset($myGraphAUP)) {
|
|
$myGraphAUP->BarGraphHoriz();
|
|
}
|
|
?>
|
|
|
|
<?php
|
|
if (isset($msg_online)) {
|
|
echo $msg_online;
|
|
}
|
|
?>
|
|
|
|
<?php
|
|
if (isset($msg_pms)) {
|
|
echo $msg_pms;
|
|
}
|
|
?>
|
|
|
|
<?php
|
|
if (isset($msg_profile)) {
|
|
echo $msg_profile;
|
|
}
|
|
?>
|
|
<br />
|
|
<?php
|
|
if (isset($msg_icq)) {
|
|
echo $msg_icq;
|
|
}
|
|
?>
|
|
<?php
|
|
if (isset($msg_gender)) {
|
|
echo $msg_gender;
|
|
}
|
|
?>
|
|
<?php
|
|
if (isset($msg_skype)) {
|
|
echo $msg_skype;
|
|
}
|
|
?>
|
|
<?php
|
|
if (isset($msg_website)) {
|
|
echo $msg_website;
|
|
}
|
|
?>
|
|
<?php
|
|
if (isset($msg_gtalk)) {
|
|
echo $msg_gtalk;
|
|
}
|
|
?>
|
|
<?php
|
|
if (isset($msg_yim)) {
|
|
echo $msg_yim;
|
|
}
|
|
?>
|
|
<?php
|
|
if (isset($msg_msn)) {
|
|
echo $msg_msn;
|
|
}
|
|
?>
|
|
<?php
|
|
if (isset($msg_aim)) {
|
|
echo $msg_aim;
|
|
}
|
|
?>
|
|
<?php
|
|
if (isset($msg_location)) {
|
|
echo $msg_location;
|
|
}
|
|
?>
|
|
<?php
|
|
if (isset($msg_birthdate)) {
|
|
echo $msg_birthdate;
|
|
}
|
|
}
|
|
?>
|
|
<span class = "msgkarma">
|
|
|
|
<?php
|
|
if (isset($msg_karma)) {
|
|
echo $msg_karma;
|
|
if (isset($msg_karmaplus))
|
|
echo ' ' . $msg_karmaplus . ' ' . $msg_karmaminus;
|
|
}
|
|
else {
|
|
echo ' ';
|
|
}
|
|
?>
|
|
|
|
</span>
|
|
</div>
|
|
</body>
|
|
</html>
|