// +----------------------------------------------------------------------+ // // $Id$ // $Author$ // $URL$ // $Date$ // $Rev$ // require_once 'MECON/HTML/Tabla.php'; $aHref = ''; $aHrefModif = $aHref.'Modificar Sistema'; $aHrefElim = $aHref.'Eliminar Sistema'; $aHrefPerm = 'Definir Permisos'; $body = ''; $SAMURAI = new Samurai($DB,$_SESSION['samurai']['id_sistema']); $sistemas = $SAMURAI->getSistemas(); $TABLA2 = new Tabla ('cellspacing=0'); $row = array ($aHref.'Ingresar Nuevo Sistema'); $TABLA2->addRow($row,'align=right'); $TABLA = new Tabla ('cellpadding=2'); $row = array ('Id','Nombre','Descripcion','Fecha Inicio','Fecha Fin','Fecha Impl.','Contacto','Modif.','Elim.','Perm.'); $TABLA->addRow($row,'cabecera'); foreach ($sistemas as $sistema) { $Modif = ereg_replace('##NUEVO##' , $sistema->getId(), $aHrefModif); $Elim = ereg_replace('##NUEVO##' , $sistema->getId(), $aHrefElim); $Modif = ereg_replace('##ACCION##' , 'm' , $Modif); $Elim = ereg_replace('##ACCION##' , 'e' , $Elim); $Perm = ereg_replace('##SISTEMA##', $sistema->getId(), $aHrefPerm);; $fecha_inicio = $sistema->getFechaInicio(); $fecha_fin = $sistema->getFechaFin(); $fecha_implementacion = $sistema->getFechaImplementacion(); $row = array ( $sistema->getId(), $sistema->getNombre(), $sistema->getDescripcion(), $fecha_inicio ? $fecha_inicio->format("%d-%m-%Y") : '--', $fecha_fin ? $fecha_fin->format("%d-%m-%Y") : '--', $fecha_implementacion ? $fecha_implementacion->format("%d-%m-%Y") : '--', $sistema->getContacto(), $Modif, $Elim, $Perm, ); $TABLA->addRow($row); } //Agrego las cosas al cuerpo de la pagina $body.=$TABLA2->toHtml(1); $body.=$TABLA->toHtml().'
'; $MARCO = new Marco ('../../conf/confSecciones.php'); $MARCO->addBody($body); $MARCO->display(); ?>