X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/2a767add127bcb217dcc2ce2ca242f703b5022a0..e06899a60cc1bda43249f61aff28f99224b8013f:/sistema/www/perfiles/perfiles.php?ds=inline
diff --git a/sistema/www/perfiles/perfiles.php b/sistema/www/perfiles/perfiles.php
index 4445920..28e52a1 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.'';
$aHrefElim = $aHref.'';
@@ -47,17 +48,19 @@ if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) {
$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');
+ $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,
@@ -66,7 +69,6 @@ if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) {
}
// }}}
//DIBUJO LA PAGINA {{{
- $MARCO = new Marco ('../../conf/confSecciones.php');
$MARCO->addBody($TABLA3);
$MARCO->addBody($TABLA2->toHtml(1));
$MARCO->addBody($TABLA);