]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sistemas/sistemas-datos.php
Retoques varios. Nada grave
[mecon/samurai.git] / sistema / www / sistemas / sistemas-datos.php
index 578538d532eb677afb9c91e7cf33859a210a85e5..7ba7acea35e834bb53e1c6d1bf56fab785fd7c94 100644 (file)
@@ -28,7 +28,7 @@
     //SAMURAI {{{
     require_once 'SAMURAI/Sistema.php';
     //}}}
     //SAMURAI {{{
     require_once 'SAMURAI/Sistema.php';
     //}}}
-    require_once 'HTML/Image.php';
+    require_once 'MECON/HTML/Image.php';
     require_once 'HTML/Page.php';
 // }}}
 
     require_once 'HTML/Page.php';
 // }}}
 
@@ -43,6 +43,7 @@
                                         'language' => 'es',
                                         'cache'    => 'false',
                                         'simple'   => 'true'));
                                         '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']);
     }
         $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           = $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()     );
 
     $FORM->addElement ('static', 'id_sistema' , 'Id Sistema'          , $SISTEMA->getId()         );
     $FORM->addElement ('static', 'nombre'     , 'Nombre'              , $SISTEMA->getNombre()     );
@@ -69,8 +70,9 @@
 
 //DIBUJO LA PAGINA {{{
     $PAGE->addBodyContent($FORM);
 
 //DIBUJO LA PAGINA {{{
     $PAGE->addBodyContent($FORM);
-    $imagen = new HTML_Image('/MECON/images/general_cerrar.gif');
+    $imagen = new MECON_HTML_Image('/MECON/images/general_cerrar.gif');
     $PAGE->addBodyContent('<a href="" onClick=\'self.close();return false;\'>'.$imagen->toHtml().'</a>');
     $PAGE->addBodyContent('<a href="" onClick=\'self.close();return false;\'>'.$imagen->toHtml().'</a>');
+    $PAGE->setTitle('Datos del Sistema');
     $PAGE->display();                          
 // }}}
 //FIN
     $PAGE->display();                          
 // }}}
 //FIN