// +----------------------------------------------------------------------+ // // $Id$ // $Author$ // $URL$ // $Date$ // $Rev$ // require_once 'MECON/HTML/Tabla.php'; //LINKS A PERMISOS-ABM {{{ $aHref = ''; $aHrefModif = $aHref.'Modificar Permiso'; $aHrefElim = $aHref.'Eliminar Permiso'; // }}} //CREO LOS OBJETOS NECESARIOS {{{ if (isset($_SESSION['samurai']['id_sistema'])) { $SAMURAI = new Samurai($DB,$_SESSION['samurai']['id_sistema']); } else { $SAMURAI = new Samurai($DB); } $TABLA2 = new Tabla ('cellspacing=0'); $TABLA = new Tabla ('cellpadding=2'); // }}} //OBTENGO LA INFORMACION DE LA BASE {{{ $permisos = $SAMURAI->getPermisos(); // }}} //AGREGO LOS DATOS A LAS TABLAS {{{ $row = array ($aHref.'Ingresar Nuevo Permiso'); $TABLA2->addRow($row,'align=right'); $row = array ('Id','Descripcion','Modif.','Elim.'); $TABLA->addRow($row,'cabecera'); foreach ($permisos as $permiso) { $Modif = ereg_replace('##NUEVO##' , $permiso->getId(), $aHrefModif); $Elim = ereg_replace('##NUEVO##' , $permiso->getId(), $aHrefElim ); $Modif = ereg_replace('##ACCION##' , 'm' , $Modif ); $Elim = ereg_replace('##ACCION##' , 'e' , $Elim ); $row = array ( $permiso->getId(), $permiso->getDescripcion(), $Modif, $Elim, ); $TABLA->addRow($row); } // }}} //DIBUJO LA PAGINA {{{ $MARCO = new Marco ('../../conf/confSecciones.php'); $MARCO->addBody($TABLA2->toHtml(1)); $MARCO->addBody($TABLA); $MARCO->display(); // }}} //FIN ?>