// +----------------------------------------------------------------------+ // // $Id$ // require_once 'MECON/HTML/Tabla.php'; require_once 'SAMURAI/Perfil.php'; //LINKS A PERFILES-ABM {{{ $aHref = ''; $aHrefModif = $aHref.'Modificar Perfil'; $aHrefElim = $aHref.'Eliminar Perfil'; // }}} //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{ if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) { header('Location: sel-sistema'); } // }}} //CREO LOS OBJETOS NECESARIOS {{{ $TABLA2 = new Tabla ('cellspacing=0'); $TABLA = new Tabla ('cellpadding=2'); // }}} //OBTENGO LA INFORMACION DE LA BASE {{{ $perfiles = SAMURAI_Perfil::getPerfiles($DB); // }}} //AGREGO LOS DATOS A LAS TABLAS {{{ $row = array ($aHref.'Ingresar Nuevo Perfil'); $TABLA2->addRow($row,'align=right'); $row = array ('Id','Descripcion','Tipo','Modif.','Elim.'); $TABLA->addRow($row,'cabecera'); foreach ($perfiles as $perfil) { $Modif = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefModif); $Elim = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefElim ); $Modif = ereg_replace('##ACCION##', 'm' , $Modif ); $Elim = ereg_replace('##ACCION##', 'e' , $Elim ); $row = array ( $perfil->getId(), $perfil->getDescripcion(), $perfil->getTipo(), $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 ?>