// +----------------------------------------------------------------------+ // // $Id$ // require_once 'MECON/HTML/Tabla.php'; require_once 'SAMURAI/Perfil.php'; require_once 'SAMURAI/Sistema.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'); $TABLA3 = new Tabla ('cellspacing=0'); $SISTEMA = new SAMURAI_Sistema($DB, $_SESSION['samurai']['id_sistema']); // }}} //OBTENGO LA INFORMACION DE LA BASE {{{ $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'); $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) { $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($TABLA3); $MARCO->addBody($TABLA2->toHtml(1)); $MARCO->addBody($TABLA); $MARCO->display(); // }}} //FIN ?>