]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/perfiles/perfiles-abm.php
Estandarizacion de nombres de clases. Adaptacion de Tabla a MECON_HTML_Tabla.
[mecon/samurai.git] / sistema / www / perfiles / perfiles-abm.php
index cf7fb6637bd6cb6a9a5da16f194756614024bc8e..badc3b287c001fb3e27612c3e8c858af0ba31944 100644 (file)
 //
 // $Id$
 // 
+//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
+    if (!$SAMURAI_PERM->tiene(SAMURAI_ALTA_PERFIL,SAMURAI_BAJA_PERFIL,SAMURAI_MODI_PERFIL)) {
+//        header('Location: error')
+    }
+//}}}
 
 // REQUIRE_ONCE {{{
     require_once 'MECON/HTML/QuickForm.php';
     require_once 'MECON/HTML/Tabla.php';
+    require_once 'MECON/HTML/Error.php';
     require_once 'SAMURAI/Perfil.php';
     require_once 'SAMURAI/Permiso.php';
     require_once 'SAMURAI/Sistema.php';
+    require_once 'HTML/Image.php';
 // }}}
 //CREO LOS OBJETO NECESARIOS {{{
     if (@$_GET['id_perfil']) {
     }
 // }}}
 //AGREGO LOS ELEMENTOS DEL FORM {{{
-    $FORM->addElement ('header', 'cabecera', 'ABM Perfiles');
-    $FORM->addElement ('hidden', 'id_perfil', $id_perfil);
-    $FORM->addElement ('hidden', 'desc_ant'   , $descripcion);
-    $FORM->addElement ('static', 'desc_perfil', 'Descripcion', $descripcion);
-    $FORM->addElement ('select', 'permisos'   , 'Permisos'   , $PERMISOS, array('size' => '5', 'multiple' => 'true'));
-    $FORM->addElement ('select', 'tipo_perfil', 'Tipo Perfil', array('E' => 'Externo', 'I' => 'Interno', 'D' => 'Dios'), array ('size' => '1'));
-    $FORM->addElement ('hidden', 'responsable', $responsable);
-    $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
-    $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:history.go(-1);return true;'));
-    $FORM->addGroup($group,'botones');
+    if (@$PERMISOS) {
+        $FORM->addElement ('header', 'cabecera', 'ABM Perfiles');
+        $FORM->addElement ('hidden', 'id_perfil', $id_perfil);
+        $FORM->addElement ('hidden', 'desc_ant'   , $descripcion);
+        $FORM->addElement ('static', 'desc_perfil', 'Descripcion', $descripcion);
+        $FORM->addElement ('select', 'permisos'   , 'Permisos'   , $PERMISOS, array('size' => '5', 'multiple' => 'true'));
+        if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
+            $FORM->addElement ('select', 'tipo_perfil', 'Tipo Perfil', array('E' => 'Externo', 'I' => 'Interno', 'D' => 'Dios'), array ('size' => '1'));
+        }
+        $FORM->addElement ('hidden', 'responsable', $responsable);
+        $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
+        $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location=\'perfiles\';return false;'));
+        $FORM->addGroup($group,'botones');
+    }
+    else {
+        $ERROR = new MECON_HTML_Error('El sistema no posee permisos asociados.');
+    }
 // }}}
 //AGREGO LAS REGLAS DE VALIDACION {{{
     $FORM->addRule ('permisos', 'Se debe seleccionar al menos un permiso', 'required');
 // }}}
 //CARGO LOS DATOS SI YA EXISTEN EN BASE {{{
-// TODO Terminar de armar la parte de modificacion y eliminacion
     if (isset($_GET['accion']) && $_GET['accion'] != '') {
         //MODIFICACION
         $id_perfil    =& $FORM->getElement  ('id_perfil'  );
         $desc_perfil  =& $FORM->getElement  ('desc_perfil');
         $permisos     =& $FORM->getElement  ('permisos'   );
-        $tipo_perfil  =& $FORM->getElement  ('tipo_perfil');
+        
+        if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
+            $tipo_perfil  =& $FORM->getElement  ('tipo_perfil');
+        }
         $responsable  =& $FORM->getElement  ('responsable');
         $group        =& $FORM->getElement  ('botones'    );
         $group        =& $group->getElements('aceptar'    );
         $aceptar      =& $group[0];
 
         $permisos->setSelected($PERFIL->getPermisos());
-        $tipo_perfil->setSelected($PERFIL->getTipo());
+        
+        if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
+            $tipo_perfil->setSelected($PERFIL->getTipo());
+        }
 
         if ($PERFIL->getResponsable() != '') {
             $responsable->setValue($PERFIL->getResponsable());
         //ELIMINACION -> modifico el valor del boton
         if ($_GET['accion'] == 'e') {
             $aceptar->setValue('Eliminar');
+            $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
             $FORM->freeze();
         }
     }
             $id_perfil    =& $FORM->getElement  ('id_perfil'  );
             $desc_perfil  =& $FORM->getElement  ('desc_perfil');
             $permisos     =& $FORM->getElement  ('permisos'   );
-            $tipo_perfil  =& $FORM->getElement  ('tipo_perfil');
-            $tipo_perfil_tmp  =  $tipo_perfil->getSelected();
+            
+            if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
+                $tipo_perfil  =& $FORM->getElement  ('tipo_perfil');
+                $tipo_perfil_tmp  =  $tipo_perfil->getSelected();
+            }
             $responsable  =& $FORM->getElement  ('responsable');
             $group        =& $FORM->getElement  ('botones'    );
             $group        =& $group->getElements('aceptar'    );
             $PERFIL->setDescripcion($desc_perfil->_text     );
             $PERFIL->setResponsable($responsable->getValue());
             $PERFIL->setPermisos   ($permisos->getSelected()); //Le asigno al perfil los permisos seleccionados
-            $PERFIL->setTipo       ($tipo_perfil_tmp['0']   );
+            
+            if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
+                $PERFIL->setTipo       ($tipo_perfil_tmp['0']   );
+            }
             
             //Grabo y verifico si se produjo algun error
             $res = $PERFIL->guardarDatos($aceptar->getValue());
 
             if (PEAR::isError($res)) {
-                $TABLA = new Tabla ('cellspacing=0');
-                $row = array ('<font color="red"><b>'.$res->getMessage().'</b></font>');
-                $TABLA->addRow($row,'align=left');
+                $ERROR = new MECON_HTML_Error($res->getMessage());
                 if ($aceptar->getValue() == 'Eliminar') {
                     $FORM->freeze();
                 }
     }
 // }}}
 //DIBUJO LA PAGINA {{{
-    $TABLA3 = new Tabla ('cellspacing=0');
-    $row   = array ('<b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
-    $TABLA3->addRow($row,'titulo align=left');    
+    $imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
+    $row    = array ($imagen->toHtml().'&nbsp;<b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
+    $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
+    $TABLA3->addRow($row,'align=left');    
 
-    $MARCO = new Marco ('../../conf/confSecciones.php');
     $MARCO->addTitle('ABM Perfil');
     $MARCO->addBody($TABLA3);
-    if (isset($TABLA)) {
-        $MARCO->addBody($TABLA);
+    if (isset($ERROR)) {
+        $MARCO->addBody($ERROR);
     }
     $MARCO->addBody($FORM);
     $MARCO->display();