- $Modif = ereg_replace('NUEVO', 'm'.$sistema->getId(), $aHrefModif);
- $Elim = ereg_replace('NUEVO', 'e'.$sistema->getId(), $aHrefElim);
- $row = array ($sistema->getId(),$sistema->getNombre(),$sistema->getDescripcion(),$sistema->getFechaInicio(),$sistema->getFechaFin(),$sistema->getFechaImplementacion(),$sistema->getContacto(),$Modif,$Elim);
- $TABLA->agregarFila($row);
+ $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);
+
+ $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,
+ );
+
+ $TABLA->addRow($row);