<?php require_once "config.inc.php"; require_once "controllers/user_description.class.php"; $c = new UserDescription(); ?> <!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><?=TITLE?></title> <link rel="stylesheet" type="text/css" href="common.css" /> <script type="text/javascript" src="javascript.js"></script> </head> <body> <div class="divDescription"> <h2><?=htmlentities($c->getUsername())?></h2> <table class="tableText" border="0" cellpadding="0" cellspacing="0"> <tr> <td style="width: 15em; "><strong>Email</strong></td> <td><a href="mailto:<?=urlencode($c->getEmail())?>"><?=htmlentities($c->getEmail())?></a></td> </tr> <tr> <td><strong>Nombre completo</strong></td> <td><?=htmlentities($c->getFullName())?></td> </tr> <tr> <td><strong>Recibe notificaciones</strong></td> <td><?=$c->getMessage($c->getReceiveNotifications())?></td> </tr> <tr> <td><strong>Administrador</strong></td> <td><?=$c->getMessage($c->getAdmin())?></td> </tr> </table> <table class="tableText" border="0" cellpadding="0" cellspacing="0"> <tr><td><strong>Este usuario participa en los siguientes proyectos:</strong></td></tr> <tr><td><?=$c->getProjects()?></td></tr> </table> <table class="tableText" style="width: 100%; " border="0" cellpadding="0" cellspacing="0"> <tr><td><strong>Descripción</strong></td></tr> <tr> <td class="tdText"><?=util_text($c->getDescription())?></td> </tr> </table> <p style="text-align: center; "><input class="inputButton" style="width: 8em; " type="button" value="Cerrar" onclick="javascript: window.close(); " /></p> </div> </body> </html>