// +----------------------------------------------------------------------+ // // $Id$ // //REQUIRE ONCE {{{ //MECON {{{ require_once 'MECON/HTML/QuickForm.php'; require_once 'MECON/HTML/Error.php'; //}}} //SAMURAI {{{ require_once 'SAMURAI/Usuario.php'; //}}} require_once 'HTML/Image.php'; require_once 'HTML/Page.php'; // }}} //CREO LOS OBJETOS NECESARIOS {{{ if (!@$_GET['login']) { $FORM = new MECON_HTML_Error('No hay un usuario seleccionado'); } else { $PAGE = new HTML_Page(array ('doctype'=>'HTML 4.01 Transitional', 'charset' => 'iso-8859-1', 'lineend' => 'unix', 'language' => 'es', 'cache' => 'false', 'simple' => 'true')); $FORM = new MECON_HTML_QuickForm ('usuarios_datos','post','usuarios-datos'); $USUARIO = new SAMURAI_Usuario($DB, $_GET['login']); } // }}} //OBTENGO LOS DATOS DE LA BASE {{{ $tmps = SAMURAI_Perfil::getPerfiles($DB, null, $_SESSION['samurai']['id_sistema']); foreach ($tmps as $tmp) { $PERFILES[$tmp->getId()] = $tmp->getDescripcion(); } //}}} //AGREGO LOS ELEMENTOS AL FORM {{{ $FORM->addElement ('static', 'login' , 'Login@Organismo', $USUARIO->getLogin() ); $FORM->addElement ('static', 'nrodoc' , 'Nro Documento' , $USUARIO->getNrodoc() ); $FORM->addElement ('static', 'nombre' , 'Nombre' , $USUARIO->getNombre() ); $perf =& $FORM->addElement('select', 'perfiles', 'Perfiles' , $PERFILES , array ('size'=>'5')); $perf->setSelected($USUARIO->getPerfiles()); $FORM->freeze(); // }}} //DIBUJO LA PAGINA {{{ $PAGE->addBodyContent($FORM); $imagen = new HTML_Image('/MECON/images/general_cerrar.gif'); $PAGE->addBodyContent(''.$imagen->toHtml().''); $PAGE->setTitle('Datos del Usuario'); $PAGE->display(); // }}} //FIN ?>