// +----------------------------------------------------------------------+
//
// $Id$
//
require_once 'MECON/HTML/Tabla.php';
$aHref = '';
$aHrefModif = $aHref.'';
$aHrefElim = $aHref.'';
$aHrefPerm = '';
$body = '';
if (isset($_SESSION['samurai']['id_sistema'])) {
$SAMURAI = new Samurai($DB,$_SESSION['samurai']['id_sistema']);
}
else {
$SAMURAI = new Samurai($DB);
}
$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
$MARCO = new Marco ('../../conf/confSecciones.php');
$MARCO->addBody($TABLA2->toHtml(1));
$MARCO->addBody($TABLA);
$MARCO->display();
?>