X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/ff300eaf76c4d30ccf8b12cef9813be55235a26c..52ec6b73aae5937cd9c04e150e6b261b8be98b01:/sistema/www/sistemas/sistemas-datos.php diff --git a/sistema/www/sistemas/sistemas-datos.php b/sistema/www/sistemas/sistemas-datos.php index 0353dd7..002d2c6 100644 --- a/sistema/www/sistemas/sistemas-datos.php +++ b/sistema/www/sistemas/sistemas-datos.php @@ -20,6 +20,10 @@ // $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(''.$imagen->toHtml().''); $PAGE->setTitle('Datos del Sistema'); $PAGE->display();