X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/0ecc42815b25c93505bdc63406044ebd4c37283b..d0ae155a8be2168110755cce58865068b34bfe91:/sistema/www/permisos/permisos-abm.php diff --git a/sistema/www/permisos/permisos-abm.php b/sistema/www/permisos/permisos-abm.php index 2d379fd..eb7e95f 100644 --- a/sistema/www/permisos/permisos-abm.php +++ b/sistema/www/permisos/permisos-abm.php @@ -18,17 +18,14 @@ // +----------------------------------------------------------------------+ // // $Id$ -// $Author$ -// $URL$ -// $Date$ -// $Rev$ // require_once 'MECON/HTML/QuickForm.php'; + require_once 'MECON/HTML/Tabla.php'; + require_once 'SAMURAI/Permiso.php'; //CREO LOS OBJETO NECESARIOS {{{ - $SAMURAI = new Samurai($DB); - $FORM = new MECON_HTML_QuickForm ('permisos_abm','post','permisos-abm'); + $FORM = new MECON_HTML_QuickForm ('permisos_abm','post','permisos-abm'); // }}} //AGREGO LOS ELEMENTOS DEL FORM {{{ $FORM->addElement ('header', 'cabecera', 'ABM Permisos'); @@ -53,7 +50,7 @@ //Viene en el post, no me ocupo yo. $id_permiso = $idPermiso->getValue(); } - $PERMISO = new Permiso ($DB, $id_permiso); + $PERMISO = new SAMURAI_Permiso ($DB, $id_permiso); // }}} //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{ if (isset($_GET['accion']) && $_GET['accion'] != '') { @@ -94,11 +91,12 @@ $res = $PERMISO->guardarDatos($aceptar->getValue()); if (PEAR::isError($res)) { - $group = array (); - $group[] = HTML_QuickForm::createElement('static', 'error' , 'Error:', $res->getMessage()); - $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , $aceptar->getValue()); - $FORM->removeElement('botones'); - $FORM->addGroup($group,'botones', '', '
'); + $TABLA = new Tabla ('cellspacing=0'); + $row = array (''.$res->getMessage().''); + $TABLA->addRow($row,'align=left'); + if ($aceptar->getValue() == 'Eliminar') { + $FORM->freeze(); + } } else { $FORM->freeze(); @@ -110,6 +108,9 @@ //DIBUJO LA PAGINA {{{ $MARCO = new Marco ('../../conf/confSecciones.php'); $MARCO->addTitle('ABM Permisos'); + if (isset($TABLA)) { + $MARCO->addBody($TABLA->toHtml(1)); + } $MARCO->addBody($FORM); $MARCO->display(); //