// $Id$
//
+//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
+$SAMURAI_PERM->chequear(SAMURAI_DEVELOPER);
+//}}}
//REQUIRE ONCE {{{
//MECON {{{
require_once 'MECON/HTML/QuickForm.php';
//SAMURAI {{{
require_once 'SAMURAI/Usuario.php';
//}}}
- require_once 'HTML/Image.php';
+ require_once 'MECON/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');
'language' => 'es',
'cache' => 'false',
'simple' => 'true'));
+ $PAGE->addStyleSheet('/MECON/css/general_estilos.css');
$FORM = new MECON_HTML_QuickForm ('usuarios_datos','post','usuarios-datos');
$USUARIO = new SAMURAI_Usuario($DB, $_GET['login']);
}
//DIBUJO LA PAGINA {{{
$PAGE->addBodyContent($FORM);
- $imagen = new HTML_Image('/MECON/images/general_cerrar.gif');
+ $imagen = new MECON_HTML_Image('/MECON/images/general_cerrar.gif');
$PAGE->addBodyContent('<a href="" onClick=\'self.close();return false;\'>'.$imagen->toHtml().'</a>');
+ $PAGE->setTitle('Datos del Usuario');
$PAGE->display();
// }}}
//FIN