// $Date$
// $Rev$
//
- require_once 'HTML/Tabla.php';
+ require_once 'MECON/HTML/Tabla.php';
$aHref = '<a href="sistemas-abm?accion=##ACCION##&idSistema=##NUEVO##">';
- $aHrefModif = $aHref.'<img src="/www/images/modificar.gif" border="0"></a>';
- $aHrefElim = $aHref.'<img src="/www/images/eliminar.gif" border="0"></a>';
+ $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0"></a>';
+ $aHrefElim = $aHref.'<img src="/MECON/images/general_eliminar.gif" border="0"></a>';
+ $aHrefPerm = '<a href="sistemas-permisos?idSistema=##SISTEMA##"><img src="/MECON/images/general_ir4" border="0"></a>';
$body = '';
$sistemas = $SAMURAI->getSistemas();
$TABLA2 = new Tabla ('cellspacing=0');
- $row = array ($aHref.'<img src="/www/images/nuevo.gif" border="0">Ingresar Nuevo Sistema</a>');
+ $row = array ($aHref.'<img src="/MECON/images/general_nuevo.gif" border="0">Ingresar Nuevo Sistema</a>');
$TABLA2->addRow($row,'align=right');
$TABLA = new Tabla ('cellpadding=2');
- $row = array ('Id','Nombre','Descripcion','Fecha Inicio','Fecha Fin','Fecha Impl.','Contacto','Modif.','Elim.');
+ $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);
+ $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();
$sistema->getContacto(),
$Modif,
$Elim,
+ $Perm,
);
$TABLA->addRow($row);
}
-
//Agrego las cosas al cuerpo de la pagina
$body.=$TABLA2->toHtml(1);
$body.=$TABLA->toHtml().'<BR>';
-
- $MARCO = new Marco ('samurai');
+
+ $MARCO = new Marco ('../conf/confSecciones.php');
$MARCO->addBody($body);
$MARCO->display();
?>