]> git.llucax.com Git - mecon/samurai.git/commitdiff
Adapto las paginas de permisos para funcionar con MECON_HTML_TablaDB.
authorMartín Marrese <marrese@gmail.com>
Mon, 8 Mar 2004 16:06:17 +0000 (16:06 +0000)
committerMartín Marrese <marrese@gmail.com>
Mon, 8 Mar 2004 16:06:17 +0000 (16:06 +0000)
sistema/www/permisos/permisos-abm.php
sistema/www/permisos/permisos.php

index 09fa1477db0c8a60d57535b1eeb66c6a586b780d..c997d93a88e2564118c2881be33a83437db53fb9 100644 (file)
@@ -27,7 +27,7 @@ if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) {
 $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
 //}}}
 
-//XXX OBTENGO LA ACCION {{{
+//OBTENGO LA ACCION {{{
 switch ($_REQUEST['accion']) {
     case 'm':
         $b_accion = 'Modificar';
@@ -45,109 +45,117 @@ switch ($_REQUEST['accion']) {
 //}}}
     
 //REQUIRE_ONCE {{{    
-    //MECON {{{
-    require_once 'MECON/HTML/QuickForm.php';
-    require_once 'MECON/HTML/Tabla.php';
-    require_once 'MECON/HTML/Error.php';
-    // }}}
-    //SAMURAI {{{
-    require_once 'SAMURAI/Permiso.php';
-    //}}}
+//MECON {{{
+require_once 'MECON/HTML/QuickForm.php';
+require_once 'MECON/HTML/Tabla.php';
+require_once 'MECON/HTML/Error.php';
+// }}}
+//SAMURAI {{{
+require_once 'SAMURAI/Permiso.php';
+//}}}
 //}}}
+
 //CREO LOS OBJETO NECESARIOS {{{
-    $FORM = new MECON_HTML_QuickForm ('permisos_abm','post','permisos-abm');
-    $FORM->renderer->updateAttributes('width="400"');
+$FORM = new MECON_HTML_QuickForm ('permisos_abm','post','permisos-abm');
+$FORM->renderer->updateAttributes('width="400"');
 // }}}
+
 //AGREGO LOS ELEMENTOS DEL FORM {{{
-    $FORM->addElement ('header', 'cabecera', 'ABM Permisos');
-    $FORM->addElement ('hidden', 'id_permiso');
-    $FORM->addElement ('text'  , 'desc_permiso', 'Descripción', array('size'=>'50'));
-    $FORM->addElement ('hidden', 'responsable' , $_SESSION['usuario']);
-    $FORM->addElement ('hidden', 'accion', $accion);
-    $group[] = HTML_QuickForm::createElement('submit', 'aceptar', $b_accion);
-    $group[] = HTML_QuickForm::createElement('button', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:history.go(-1);return true;'));
-    $FORM->addGroup($group,'botones');
+$FORM->addElement ('header', 'cabecera', 'ABM Permisos');
+$FORM->addElement ('hidden', 'id_permiso');
+$FORM->addElement ('text'  , 'desc_permiso', 'Descripción', 
+        array('size'=>'50'));
+$FORM->addElement ('hidden', 'responsable' , $_SESSION['usuario']);
+$FORM->addElement ('hidden', 'accion', $accion);
+$group[] = HTML_QuickForm::createElement('submit', 'aceptar', $b_accion);
+$group[] = HTML_QuickForm::createElement('button', 'cancelar', 'Cancelar', 
+        array ('onClick' => 'javascript:history.go(-1);return true;'));
+$FORM->addGroup($group,'botones');
 // }}}
+
 //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
-    $FORM->addRule('desc_permiso', 'El campo descripción es obligatorio', 'required', '', 'client');
+$FORM->addRule('desc_permiso', 'El campo descripción es obligatorio', 'required', '', 'client');
 // }}}
+
 //CREO EL OBJETO PERMISO {{{
-    //Obtengo el id del permiso.
-    $idPermiso =& $FORM->getElement('id_permiso');
-    if (isset($_GET['accion']) && $_GET['accion'] != '') {
-        //Viene en el get es -> modificar o eliminar, me ocupo yo.
-        $id_permiso = $_GET['idPermiso'];
-        $idPermiso->setValue($id_permiso);
-    }
-    else {
-        //Viene en el post, no me ocupo yo.
-        $id_permiso = $idPermiso->getValue();
-    }
-    $PERMISO = new SAMURAI_Permiso ($DB, $id_permiso);
-// }}}
+//Obtengo el id del permiso.
+$idPermiso =& $FORM->getElement('id_permiso');
+if (isset($_GET['accion']) && $_GET['accion'] != '') {
+    //Viene en el get es -> modificar o eliminar, me ocupo yo.
+    $id_permiso = $_GET['idPermiso'];
+    $idPermiso->setValue($id_permiso);
+}
+else {
+    //Viene en el post, no me ocupo yo.
+    $id_permiso = $idPermiso->getValue();
+}
+$PERMISO = new SAMURAI_Permiso ($DB, $id_permiso);
+//}}}
+
 //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
-    if (isset($_GET['accion']) && $_GET['accion'] != '') {
-        //MODIFICACION -> agrego la info a los elementos
-        $desc_permiso =& $FORM->getElement  ('desc_permiso');
-        $responsable  =& $FORM->getElement  ('responsable' );
-        $group        =& $FORM->getElement  ('botones'     );
-        $group        =& $group->getElements('aceptar'     );
-        $aceptar      =& $group[0];
+if (isset($_GET['accion']) && $_GET['accion'] != '') {
+    //MODIFICACION -> agrego la info a los elementos
+    $desc_permiso =& $FORM->getElement  ('desc_permiso');
+    $responsable  =& $FORM->getElement  ('responsable' );
+    $group        =& $FORM->getElement  ('botones'     );
+    $group        =& $group->getElements('aceptar'     );
+    $aceptar      =& $group[0];
 
-        $desc_permiso->setValue ($PERMISO->getDescripcion());
-        
-        if ($PERMISO->getResponsable() != '') {
-            $responsable->setValue($PERMISO->getResponsable());
-        }
-        
-        $aceptar->setValue('Modificar');
-        
-        //ELIMINACION -> modifico el valor del boton
-        if ($_GET['accion'] == 'e') {
-            $aceptar->setValue('Eliminar');
-            $FORM->freeze();
-        }
+    $desc_permiso->setValue ($PERMISO->getDescripcion());
+
+    if ($PERMISO->getResponsable() != '') {
+        $responsable->setValue($PERMISO->getResponsable());
     }
+
+    $aceptar->setValue('Modificar');
+
+    //ELIMINACION -> modifico el valor del boton
+    if ($_GET['accion'] == 'e') {
+        $aceptar->setValue('Eliminar');
+        $FORM->freeze();
+    }
+}
 // }}}
+
 //VALIDO EL FORMULARIO {{{
-    if ($FORM->validate()) {
-       // VEO SI SE CANCELO {{{
-        $botones = $FORM->getSubmitValue('botones');
-        if (@$botones['cancelar']) {
-            header('Location: permisos');
-        }
-        // }}}
-        $desc_permiso =& $FORM->getElement  ('desc_permiso');
-        $responsable  =& $FORM->getElement  ('responsable' );
-        $group        =& $FORM->getElement  ('botones'     );
-        $group        =& $group->getElements('aceptar'     );
-        $aceptar      =& $group[0];
-        
-        $PERMISO->setDescripcion($desc_permiso->getValue());
-        $PERMISO->setResponsable($responsable->getValue());
-        
-        //Verifico si se produjo algun error
-        $res = $PERMISO->guardarDatos($aceptar->getValue());
+if ($FORM->validate()) {
+    // VEO SI SE CANCELO {{{
+    $botones = $FORM->getSubmitValue('botones');
+    if (@$botones['cancelar']) {
+        header('Location: permisos');
+    }
+    // }}}
+    $desc_permiso =& $FORM->getElement  ('desc_permiso');
+    $responsable  =& $FORM->getElement  ('responsable' );
+    $group        =& $FORM->getElement  ('botones'     );
+    $group        =& $group->getElements('aceptar'     );
+    $aceptar      =& $group[0];
 
-        if (PEAR::isError($res)) {
-            $ERROR = new MECON_HTML_Error(traducir($res->getMessage()));
-            if ($aceptar->getValue() == 'Eliminar') {
-                $FORM->freeze();
-            }
-        }
-        else {
+    $PERMISO->setDescripcion($desc_permiso->getValue());
+    $PERMISO->setResponsable($responsable->getValue());
+
+    //Verifico si se produjo algun error
+    $res = $PERMISO->guardarDatos($aceptar->getValue());
+
+    if (PEAR::isError($res)) {
+        $ERROR = new MECON_HTML_Error(traducir($res->getMessage()));
+        if ($aceptar->getValue() == 'Eliminar') {
             $FORM->freeze();
-            header('Location: permisos');
         }
     }
+    else {
+        $FORM->freeze();
+        header('Location: permisos');
+    }
+}
 // }}}
+
 //DIBUJO LA PAGINA {{{
-    $MARCO->addTitle('ABM Permisos');
-    if (isset($ERROR)) {
-        $MARCO->addBody($ERROR);
-    }
-    $MARCO->addBody($FORM);
-    $MARCO->display();
+$MARCO->addTitle('ABM Permisos');
+if (isset($ERROR)) {
+    $MARCO->addBody($ERROR);
+}
+$MARCO->addBody($FORM);
+$MARCO->display();
 // }}}
-//FIN
 ?>
index bafa5f60d7ba02b48209b3802b6571d5a09d94f6..71e59ba7502a371b1ea41ddac3bf3fb3f79283f5 100644 (file)
@@ -82,7 +82,7 @@ function modificar_callback($param) {
         //DesHabilitado
         $tmp =& new MECON_HTML_Image (
                 '/MECON/images/general_modificar_des.gif',
-                '(m)'
+                '(-)'
                 );
         return $tmp->toHtml();
     }
@@ -121,7 +121,7 @@ function eliminar_callback($param) {
         //DesHabilitado
         $tmp =& new MECON_HTML_Image (
                 '/MECON/images/general_eliminar_des.gif',
-                '(e)'
+                '(-)'
                 );
         return $tmp->toHtml();
     }
@@ -154,5 +154,5 @@ $TABLA->updateColAttributes(3,'width="10%"');
 //DIBUJO LA PAGINA {{{
     $MARCO->addBody($TABLA);
     $MARCO->display();
-// }}}
+//}}}
 ?>