]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sistemas/sistemas-datos.php
BugFixes
[mecon/samurai.git] / sistema / www / sistemas / sistemas-datos.php
index 7ba7acea35e834bb53e1c6d1bf56fab785fd7c94..a70828fbafc086aac71637019c0d10fbbb515185 100644 (file)
 // $Id$
 // 
 
 // $Id$
 // 
 
+//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
+$SAMURAI_PERM->setSistema(SAMURAI_PERM);
+if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) {
+    $SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER);
+}
+$MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
+//}}}
+
 //REQUIRE ONCE {{{
     //MECON {{{
     require_once 'MECON/HTML/QuickForm.php';
 //REQUIRE ONCE {{{
     //MECON {{{
     require_once 'MECON/HTML/QuickForm.php';
@@ -43,7 +51,7 @@
                                         'language' => 'es',
                                         'cache'    => 'false',
                                         'simple'   => 'true'));
                                         'language' => 'es',
                                         'cache'    => 'false',
                                         'simple'   => 'true'));
-        $PAGE->addStyleSheet('/MECON/css/general_estilos.css');
+        $PAGE->addStyleSheet('/MECON/css/marco.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']);
     }
 
     $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()     );
-    $FORM->addElement ('static', 'descripcion', 'Descripcion'         , $SISTEMA->getDescripcion());
+    $FORM->addElement ('static', 'descripcion', 'Descripción'         , $SISTEMA->getDescripcion());
     $FORM->addElement ('static', 'fch_inicio' , 'Fecha Inicio'        , $fecha_inicio             );
     $FORM->addElement ('static', 'fch_fin'    , 'Fecha Fin'           , $fecha_fin                );
     $FORM->addElement ('static', 'fch_inicio' , 'Fecha Inicio'        , $fecha_inicio             );
     $FORM->addElement ('static', 'fch_fin'    , 'Fecha Fin'           , $fecha_fin                );
-    $FORM->addElement ('static', 'fch_imple'  , 'Fecha Implementacion', $fecha_implementacion     );
+    $FORM->addElement ('static', 'fch_imple'  , 'Fecha Implementación', $fecha_implementacion     );
     $FORM->addElement ('static', 'contacto'   , 'Contacto'            , $SISTEMA->getContacto()   );
     $FORM->freeze();
 // }}}
     $FORM->addElement ('static', 'contacto'   , 'Contacto'            , $SISTEMA->getContacto()   );
     $FORM->freeze();
 // }}}