X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/2ba023cd1e829c20ad139ca6c2c738738b4f15fe..4a91ae5069fc847c7f27e84a8449fbbd0742e2b2:/sistema/www/perfiles/perfiles.php diff --git a/sistema/www/perfiles/perfiles.php b/sistema/www/perfiles/perfiles.php index c51625b..1c98531 100644 --- a/sistema/www/perfiles/perfiles.php +++ b/sistema/www/perfiles/perfiles.php @@ -24,7 +24,8 @@ require_once 'SAMURAI/Perfil.php'; require_once 'SAMURAI/Sistema.php'; -//LINKS A PERFILES-ABM {{{ +//LINKS {{{ + $aHrefPopup = ''; $aHref = ''; $aHrefModif = $aHref.'Modificar Perfil'; $aHrefElim = $aHref.'Eliminar Perfil'; @@ -44,19 +45,22 @@ if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) { $perfiles = SAMURAI_Perfil::getPerfiles($DB, null, $_SESSION['samurai']['id_sistema']); // }}} //AGREGO LOS DATOS A LAS TABLAS {{{ - $row = array ('SISTEMA: '.$SISTEMA->getNombre().''); - $TABLA3->addRow($row,'titulo align=left'); + $imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif'); + $row = array ($imagen->toHtml().' SISTEMA: '.$SISTEMA->getNombre().''); + $TABLA3->addRow($row,'align=left'); $row = array ('Ingresar Nuevo Perfil'); $TABLA2->addRow($row,'align=right'); $row = array ('Id','Descripcion','Tipo','Modif.','Elim.'); $TABLA->addRow($row,'cabecera'); foreach ($perfiles as $perfil) { + $Popup = ereg_replace('##PERFIL##', $perfil->getId(), $aHrefPopup); $Modif = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefModif); $Elim = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefElim ); + $Popup = $Popup.$perfil->getDescripcion().''; $Modif = ereg_replace('##ACCION##', 'm' , $Modif ); $Elim = ereg_replace('##ACCION##', 'e' , $Elim ); $row = array ( $perfil->getId(), - $perfil->getDescripcion(), + $Popup, $perfil->getTipo(), $Modif, $Elim,