]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sistemas/sistemas-permisos.php
Cambios despues de las modificaciones de la estructura de directorios
[mecon/samurai.git] / sistema / www / sistemas / sistemas-permisos.php
index e10b0b37da5d48e1e95fb54ddb77aeeea3918dec..5cd96a7176f11b87e9d90acb8e60b2ace4cba60f 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
+// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
 // +----------------------------------------------------------------------+
 // | PHP Version 4                                                        |
 // +----------------------------------------------------------------------+
 // +----------------------------------------------------------------------+
 //
 // $Id: sistemas-permisos.php 21 2003-06-25 22:26:30Z mmarre e
-// $Author$
-// $URL$
-// $Date$
-// $Rev$
 // 
-    require_once 'HTML/QuickForm.php';
-    require_once 'MECON/HTML/QuickForm/Renderer/Tabla.php';
+    require_once 'MECON/HTML/QuickForm.php';
     require_once 'MECON/HTML/Tabla.php';
+    require_once 'SAMURAI/Sistema.php';
+    require_once 'SAMURAI/Permiso.php';
 
-//OBTENGO EL ID DEL SISTEMA
+//OBTENGO EL ID DEL SISTEMA {{
     //El id de sistema viene por get o por post, no hay otra posibilidad
     $idSistema = 0;
     if (isset($_GET['idSistema'])) {
     elseif (isset($_POST['idSistema'])) {
         $idSistema = $_POST['idSistema'];
     }
-//
-//CREO LOS OBJETO NECESARIOS
-    $SAMURAI   = new Samurai($DB);
-    $FORM      = new HTML_QuickForm ('sistemas_permisos','post','sistemas-permisos');
-    $SISTEMA   = new Sistema ($DB, $idSistema);
+// }}}
+//CREO LOS OBJETO NECESARIOS {{{
+    $FORM      = new MECON_HTML_QuickForm ('sistemas_permisos','post','sistemas-permisos');
+    $SISTEMA   = new SAMURAI_Sistema ($DB, $idSistema);
     $TABLASIST = new Tabla ('cellpadding=2');
     $TABLAPERM = new Tabla ('cellpadding=2');
-//
+// }}}
     $SISTEMA->setResponsable($_SESSION['samurai']['login']);
-//AGREGO LA INFORMACION DEL SISTEMA
+//AGREGO LA INFORMACION DEL SISTEMA {{{
     $row = array ('Id', 'Nombre', 'Descripcion');
     $TABLASIST->addRow($row, 'cabecera');
     $row = array ($SISTEMA->getId(), $SISTEMA->getNombre(), $SISTEMA->getDescripcion());
     $TABLASIST->addRow($row, 'comun');
-//
-//AGREGO LOS ELEMENTOS DEL FORM
+// }}}
+//AGREGO LOS ELEMENTOS DEL FORM {{{
     //Obtengo la lista de permisos
-    $PERMISOS = $SAMURAI->getSelectPermisos();
+    $PERMISOS = SAMURAI_Permiso::getArrayPermisos($DB);
     //Agrego elementos
     $FORM->addElement ('header', 'cabecera'   , 'Agregar una asociacion');
     $FORM->addElement ('hidden', 'idSistema'  , $idSistema);
     $FORM->addElement ('select', 'permisos'   , 'Permisos'   , $PERMISOS, array('size' => '1'));
-    $FORM->addElement ('hidden', 'permant');
-    $FORM->addElement ('hidden', 'obsant');
+    $FORM->addElement ('hidden', 'permant'); //Permiso anterior
+    $FORM->addElement ('hidden', 'obsant');  //Obseracion anterior
     $FORM->addElement ('text'  , 'observacion', 'Observacion', array('size' => '30'));
     $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
     $FORM->addGroup($group,'botones', '', ',&nbsp;');
-//
-//VALIDO EL FORMULARIO
+// }}}
+//VALIDO EL FORMULARIO {{{
     if ($FORM->validate()) {
         $idPermiso   =& $FORM->getElement  ('permisos'   );
         $idPerm_ant  =& $FORM->getElement  ('permant'    );
         }
 
         if ($error) {
-            $group = array ();
-            $group[] = HTML_QuickForm::createElement('static', 'error' , 'Error', 'La asociacion ya existe, modifique alguno de sus datos.');
-            $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
-            $FORM->removeElement('botones');
-            $FORM->addGroup($group,'botones', '', '<br>');
+            $TABLA = new Tabla ('cellspacing=0');
+            $row = array ('<font color="red"><b>La asociacion ya existe, modifique alguno de sus datos</b></font>');
+            $TABLA->addRow($row,'align=left');
         }
         else {
             $idPermiso->setSelected(null);
@@ -99,8 +93,8 @@
             $aceptar->setValue('Grabar');
         }
     }
-//
-//VERIFICO COMO DEBO LLAMAR AL BOTON SUBMIT
+// }}}
+//VERIFICO COMO DEBO LLAMAR AL BOTON SUBMIT {{{
     if (isset($_GET['accion'])) { 
         $group   =& $FORM->getElement  ('botones');
         $group   =& $group->getElements('aceptar');
             $FORM->freeze();
         }
     } 
-//
-//CAPTURO SI HAY ACCION -> MODIFICAR O ELIMINAR -> MUESTRO LOS DATOS EN EL FORM
+// }}}
+//CAPTURO SI HAY ACCION -> MODIFICAR O ELIMINAR -> MUESTRO LOS DATOS EN EL FORM {{{
     if (isset($_GET['accion'])) {
         $idPermiso   =& $FORM->getElement ('permisos'   );
         $idPerm_ant  =& $FORM->getElement ('permant'    );
         $observacion->setValue($_GET['observacion']);
         $obs_ant->setValue($_GET['observacion']);    
     }
-//
-//AGREGO LA INFORMACION DE LAS ASOCIACIONES
+// }}}
+//AGREGO LA INFORMACION DE LAS ASOCIACIONES {{{
     $aHref      = '<a href="sistemas-permisos?accion=##ACCION##&idPermiso=##PERMISO##&observacion=##OBS##&idSistema='.$idSistema.'">';
     $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar"></a>';
     $aHrefElim  = $aHref.'<img src="/MECON/images/general_eliminar.gif"  border="0" alt="Eliminar" ></a>';
     
     $asocs = $SISTEMA->getAsociaciones();
  
-    $idPerm_ant  =& $FORM->getElement ('permant'    );
-    $obs_ant     =& $FORM->getElement ('obsant'     );  
+    $idPerm_ant  =& $FORM->getElement ('permant');
+    $obs_ant     =& $FORM->getElement ('obsant' );  
    
     foreach ($asocs as $key => $asoc) {
         $estilo = 'comun';
-        $permiso = new Permiso($DB, $asoc['id']);
+        $permiso = new SAMURAI_Permiso($DB, $asoc['id']);
         $Modif = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefModif);
-        $Elim  = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefElim);
-        $Modif = ereg_replace('##OBS##'    , $asoc['obs'], $Modif);
-        $Elim  = ereg_replace('##OBS##'    , $asoc['obs'], $Elim);
-        $Modif = ereg_replace('##ACCION##' , 'm', $Modif);
-        $Elim  = ereg_replace('##ACCION##' , 'e', $Elim);
+        $Elim  = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefElim );
+        $Modif = ereg_replace('##OBS##'    , $asoc['obs'], $Modif     );
+        $Elim  = ereg_replace('##OBS##'    , $asoc['obs'], $Elim      );
+        $Modif = ereg_replace('##ACCION##' , 'm'         , $Modif     );
+        $Elim  = ereg_replace('##ACCION##' , 'e'         , $Elim      );
         
         if ($permiso->getId() == $idPerm_ant->getValue() && $asoc['obs'] == $obs_ant->getValue()) {
             $estilo = 'titulo';
         $TABLAPERM->addRow($row, $estilo);
     }
 
-//
-//DIBUJO LA PAGINA
-    $renderer =& new HTML_QuickForm_Renderer_Tabla('width="100%"');
-    $FORM->accept($renderer);
-
+// }}}
+//DIBUJO LA PAGINA {{{
     $MARCO = new Marco ('../../conf/confSecciones.php');
     $MARCO->addTitle('Asociar Permisos y Sistemas');
     //AGREGO LA TABLA DEL SISTEMA
     $MARCO->addBody($TABLASIST);
     $MARCO->addBody('<BR>');
+    //AGREGO EL ERROR
+    if (isset($TABLA)) {
+        $MARCO->addBody($TABLA);
+    }
     //AGREGO LA TABLA DEL FORM
-    $MARCO->addBody($renderer);
+    $MARCO->addBody($FORM);
     $MARCO->addBody('<BR>');
     //AGREGO LA TABLA DE PERMISOS
     $MARCO->addBody($TABLAPERM);
     $MARCO->display();
-//
+// }}}
 //FIN
 
 ?>