]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/permisos/permisos-abm.php
Cambios despues de las modificaciones de la estructura de directorios
[mecon/samurai.git] / sistema / www / permisos / permisos-abm.php
index 2d379fdf9a7ec2059a82591e58e46707c205e468..eb7e95fbc47a24af6fec486da002b1a9c1c70884 100644 (file)
 // +----------------------------------------------------------------------+
 //
 // $Id$
 // +----------------------------------------------------------------------+
 //
 // $Id$
-// $Author$
-// $URL$
-// $Date$
-// $Rev$
 // 
     
     require_once 'MECON/HTML/QuickForm.php';
 // 
     
     require_once 'MECON/HTML/QuickForm.php';
+    require_once 'MECON/HTML/Tabla.php';
+    require_once 'SAMURAI/Permiso.php';
 
 //CREO LOS OBJETO NECESARIOS {{{
 
 //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');
 // }}}
 //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();
     }
         //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'] != '') {
 // }}}
 //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
     if (isset($_GET['accion']) && $_GET['accion'] != '') {
         $res = $PERMISO->guardarDatos($aceptar->getValue());
 
         if (PEAR::isError($res)) {
         $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', '', '<br>');
+            $TABLA = new Tabla ('cellspacing=0');
+            $row = array ('<font color="red"><b>'.$res->getMessage().'</b></font>');
+            $TABLA->addRow($row,'align=left');
+            if ($aceptar->getValue() == 'Eliminar') {
+                $FORM->freeze();
+            }
         }
         else {
             $FORM->freeze();
         }
         else {
             $FORM->freeze();
 //DIBUJO LA PAGINA {{{
     $MARCO = new Marco ('../../conf/confSecciones.php');
     $MARCO->addTitle('ABM Permisos');
 //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();
 //
     $MARCO->addBody($FORM);
     $MARCO->display();
 //