]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sistemas/sistemas-datos.php
BugFixes despues de tocar los $_SESSION
[mecon/samurai.git] / sistema / www / sistemas / sistemas-datos.php
index 0353dd7b01287117e0f8425befe41cfbb14fd4e3..002d2c619548baa6f130c72f1523f9d704fa130d 100644 (file)
 // $Id$
 // 
 
+//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
+$SAMURAI_PERM->chequear(SAMURAI_DEVELOPER);
+//}}}
+
 //REQUIRE ONCE {{{
     //MECON {{{
     require_once 'MECON/HTML/QuickForm.php';
@@ -28,7 +32,7 @@
     //SAMURAI {{{
     require_once 'SAMURAI/Sistema.php';
     //}}}
-    require_once 'HTML/Image.php';
+    require_once 'MECON/HTML/Image.php';
     require_once 'HTML/Page.php';
 // }}}
 
@@ -43,6 +47,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']);
     }
@@ -69,7 +74,7 @@
 
 //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->setTitle('Datos del Sistema');
     $PAGE->display();