// +----------------------------------------------------------------------+ // // $Id$ // require_once 'MECON/HTML/Tabla.php'; require_once 'SAMURAI/Sistema.php'; $aHref = ''; $aHrefModif = $aHref.'Modificar Sistema'; $aHrefElim = $aHref.'Eliminar Sistema'; $aHrefPerm = 'Definir Permisos'; //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{ if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) { header('Location: ./../sel-sistema'); } // }}} $sistemas = SAMURAI_Sistema::getSistemas($DB); $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 la opcion de seleccionar otro sistema para trabajar $TABLA3 = new Tabla ('cellspacing=0'); $row = array ('Seleccionar otro sistema para trabajar '); $TABLA3->addRow($row,'align=right'); //Agrego las cosas al cuerpo de la pagina $MARCO = new Marco ('../../conf/confSecciones.php'); $MARCO->addBody($TABLA2->toHtml(1)); $MARCO->addBody($TABLA); $MARCO->addBody($TABLA3->toHtml(1)); $MARCO->display(); ?>