// +----------------------------------------------------------------------+
//
// $Id$
//
require_once 'MECON/HTML/Tabla.php';
require_once 'SAMURAI/Sistema.php';
$aHrefPopup = '';
$aHref = '';
$aHrefModif = $aHref.'';
$aHrefElim = $aHref.'';
$aHrefPerm = '';
//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 ('Seleccionar otro sistema para trabajar', $aHref.'Ingresar Nuevo Sistema');
$TABLA2->addRow($row);
$TABLA2->setColAlign(0,'left');
$TABLA2->setColAlign(1,'right');
$TABLA = new Tabla ('cellpadding=2');
$row = array ('Id','Nombre','Modif.','Elim.','Perm.');
$TABLA->addRow($row,'cabecera');
foreach ($sistemas as $sistema) {
$Popup = ereg_replace('##SISTEMA##', $sistema->getId(), $aHrefPopup);
$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);
$Popup = $Popup.$sistema->getNombre().'';
$row = array ( $sistema->getId(),
$Popup,
$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();
?>