//SAMURAI {{{
require_once 'SAMURAI/Usuario.php';
//}}}
+ require_once 'HTML/Image.php';
+ require_once 'HTML/Page.php';
// }}}
//CREO LOS OBJETOS NECESARIOS {{{
$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']);
}
$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'));
- $group[] = HTML_QuickForm::createElement('button', 'salir', 'Salir', array ('onClick' => 'self.close();return false;'));
- $FORM->addGroup($group,'botones');
$perf->setSelected($USUARIO->getPerfiles());
$FORM->freeze();
// }}}
//DIBUJO LA PAGINA {{{
- $FORM->display();
+ $PAGE->addBodyContent($FORM);
+ $imagen = new HTML_Image('/MECON/images/general_cerrar.gif');
+ $PAGE->addBodyContent('<a href="" onClick=\'self.close();return false;\'>'.$imagen->toHtml().'</a>');
+ $PAGE->display();
// }}}
//FIN
?>