]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sistemas/sistemas-datos.php
Estandarizacion de nombres de clases. Adaptacion de Tabla a MECON_HTML_Tabla.
[mecon/samurai.git] / sistema / www / sistemas / sistemas-datos.php
index 578538d532eb677afb9c91e7cf33859a210a85e5..689b4a520cc007e4aecacd98f3f6019707ede8cf 100644 (file)
@@ -43,6 +43,7 @@
                                         'language' => 'es',
                                         'cache'    => 'false',
                                         'simple'   => 'true'));
+        $PAGE->addStyleSheet('/MECON/css/general_estilos.css');
         $FORM    = new MECON_HTML_QuickForm ('sistemas_datos','post','sistemas-datos');
         $SISTEMA = new SAMURAI_Sistema ($DB, $_GET['id_sistema']);
     }
@@ -53,9 +54,9 @@
     $fecha_inicio           = $SISTEMA->getFechaInicio();
     $fecha_fin              = $SISTEMA->getFechaFin();
     $fecha_implementacion   = $SISTEMA->getFechaImplementacion();
-    $fecha_inicio         = $fecha_inicio         ? $fecha_inicio->format("%d-%m-%Y") : '--';
-    $fecha_fin            = $fecha_fin            ? $fecha_fin->format("%d-%m-%Y") : '--';
-    $fecha_implementacion = $fecha_implementacion ? $fecha_implementacion->format("%d-%m-%Y") : '--';
+    $fecha_inicio           = $fecha_inicio         ? $fecha_inicio->format("%d-%m-%Y") : '--';
+    $fecha_fin              = $fecha_fin            ? $fecha_fin->format("%d-%m-%Y") : '--';
+    $fecha_implementacion   = $fecha_implementacion ? $fecha_implementacion->format("%d-%m-%Y") : '--';
 
     $FORM->addElement ('static', 'id_sistema' , 'Id Sistema'          , $SISTEMA->getId()         );
     $FORM->addElement ('static', 'nombre'     , 'Nombre'              , $SISTEMA->getNombre()     );
@@ -71,6 +72,7 @@
     $PAGE->addBodyContent($FORM);
     $imagen = new HTML_Image('/MECON/images/general_cerrar.gif');
     $PAGE->addBodyContent('<a href="" onClick=\'self.close();return false;\'>'.$imagen->toHtml().'</a>');
+    $PAGE->setTitle('Datos del Sistema');
     $PAGE->display();                          
 // }}}
 //FIN