X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/421bca9938fcbe0d0cf3e715a27f0a6bc37c15c3..8f4cd0518dde7c5c3862fd136827143dd8b3eb69:/sistema/www/sistemas/sistemas-datos.php diff --git a/sistema/www/sistemas/sistemas-datos.php b/sistema/www/sistemas/sistemas-datos.php index 689b4a5..53765f5 100644 --- a/sistema/www/sistemas/sistemas-datos.php +++ b/sistema/www/sistemas/sistemas-datos.php @@ -20,6 +20,15 @@ // $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'; @@ -28,7 +37,7 @@ //SAMURAI {{{ require_once 'SAMURAI/Sistema.php'; //}}} - require_once 'HTML/Image.php'; + require_once 'MECON/HTML/Image.php'; require_once 'HTML/Page.php'; // }}} @@ -43,7 +52,7 @@ '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']); } @@ -60,17 +69,17 @@ $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_imple' , 'Fecha Implementacion', $fecha_implementacion ); + $FORM->addElement ('static', 'fch_imple' , 'Fecha ImplementaciĆ³n', $fecha_implementacion ); $FORM->addElement ('static', 'contacto' , 'Contacto' , $SISTEMA->getContacto() ); $FORM->freeze(); // }}} //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();