X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/4a91ae5069fc847c7f27e84a8449fbbd0742e2b2..b49bcec7b53d0fef70585697308ba2473cd961e9:/sistema/www/perfiles/perfiles-datos.php diff --git a/sistema/www/perfiles/perfiles-datos.php b/sistema/www/perfiles/perfiles-datos.php index 1ffb1a6..37c5e6c 100644 --- a/sistema/www/perfiles/perfiles-datos.php +++ b/sistema/www/perfiles/perfiles-datos.php @@ -20,6 +20,9 @@ // $Id$ // +//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ +$SAMURAI_PERM->chequear(SAMURAI_ALTA_PERFIL,SAMURAI_BAJA_PERFIL,SAMURAI_MODI_PERFIL, SAMURAI_DEVELOPER); +//}}} //REQUIRE ONCE {{{ //MECON {{{ require_once 'MECON/HTML/QuickForm.php'; @@ -30,7 +33,7 @@ require_once 'SAMURAI/Permiso.php'; require_once 'SAMURAI/Sistema.php'; //}}} - require_once 'HTML/Image.php'; + require_once 'MECON/HTML/Image.php'; require_once 'HTML/Page.php'; // }}} @@ -45,6 +48,7 @@ 'language' => 'es', 'cache' => 'false', 'simple' => 'true')); + $PAGE->addStyleSheet('/MECON/css/general_estilos.css'); $FORM = new MECON_HTML_QuickForm ('perfil_datos','post','perfil-datos'); $PERFIL = new SAMURAI_Perfil($DB, $_GET['id_perfil']); $SISTEMA = new SAMURAI_Sistema ($DB, $_SESSION['samurai']['id_sistema']); @@ -71,7 +75,7 @@ case 'D': $TipoPerfil = 'Dios'; break; } -//}}] +//}}} //AGREGO LOS ELEMENTOS AL FORM {{{ $FORM->addElement ('static', 'id_perfil' , 'Id Perfil' , $PERFIL->getId() ); @@ -84,7 +88,9 @@ //DIBUJO LA PAGINA {{{ $PAGE->addBodyContent($FORM); - $PAGE->addBodyContent(new HTML_Image('/MECON/images/general_cerrar.gif', 'Cerrar', array ('border'=>'0', 'onClick'=>'self.close();return false;'))); + $imagen = new MECON_HTML_Image('/MECON/images/general_cerrar.gif'); + $PAGE->addBodyContent(''.$imagen->toHtml().''); + $PAGE->setTitle('Datos del Perfil'); $PAGE->display(); // }}} //FIN