// +----------------------------------------------------------------------+ // // $Id$ // //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ $SAMURAI_PERM->setSistema(SAMURAI_PERM); if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) { $SAMURAI_PERM->setSistema($_SESSION['samurai']['id_sistema']); $SAMURAI_PERM->chequear(SAMURAI_PERM_PERFIL_ALTA,SAMURAI_PERM_PERFIL_BAJA,SAMURAI_PERM_PERFIL_MODIF, SAMURAI_PERM_DEVELOPER); } $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM); //}}} //XXX OBTENGO LA ACCION {{{ switch (@$_REQUEST['accion']) { case 'm': $b_accion = 'Modificar'; $accion = 'm'; break; case 'e': $b_accion = 'Eliminar'; $accion = 'e'; break; default: $b_accion = 'Grabar'; $accion = ''; break; } //}}} // 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 'MECON/HTML/Image.php'; // }}} //CREO LOS OBJETO NECESARIOS {{{ if (@$_GET['_id_perfil']) { $id_perfil = $_GET['_id_perfil']; } elseif (@$_POST['id_perfil']) { $id_perfil = $_POST['id_perfil']; } else { $id_perfil = null; } $FORM = new MECON_HTML_QuickForm ('perfiles_abm','post','perfiles-abm'); $FORM->renderer->updateAttributes('width="400"'); $SISTEMA = new SAMURAI_Sistema ($DB, $_SESSION['samurai']['id_sistema']); $PERFIL = new SAMURAI_Perfil ($DB, $id_perfil, $_SESSION['samurai']['id_sistema']); if ($PERFIL->getResponsable()) { $responsable = $PERFIL->getResponsable(); } else { $responsable = $_SESSION['usuario']; } if (!@$_GET['_id_perfil']) { if (@$_GET['desc_perfil']) { $PERFIL->setDescripcion(@$_GET['desc_perfil']); } else { $PERFIL->setDescripcion(@$_POST['desc_ant']); } } $descripcion = $PERFIL->getDescripcion(); // }}} //OBTENGO LOS PERMISOS DEL SISTEMA {{{ $ASOCIACIONES = $SISTEMA->getAsociaciones(); $PERMISOS = array (); foreach ($ASOCIACIONES as $as) { $clave = $as['id'].'##'.$as['obs']; $texto = ($as['obs'] != '') ? $as['desc'].' - '.$as['obs']: $as['desc']; $PERMISOS[$clave] = $texto; } // }}} //AGREGO LOS ELEMENTOS DEL FORM {{{ 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', 'Descripción', $descripcion); $FORM->addElement ('select', 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'true')); $FORM->addElement ('hidden', 'responsable', $responsable); $FORM->addElement ('hidden', 'accion', $accion); $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , $b_accion); $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 {{{ if (isset($_GET['accion']) && $_GET['accion'] != '') { //MODIFICACION $id_perfil =& $FORM->getElement ('id_perfil' ); $desc_perfil =& $FORM->getElement ('desc_perfil'); $permisos =& $FORM->getElement ('permisos' ); $responsable =& $FORM->getElement ('responsable'); $group =& $FORM->getElement ('botones' ); $group =& $group->getElements('aceptar' ); $aceptar =& $group[0]; $permisos->setSelected($PERFIL->getPermisos()); if ($PERFIL->getResponsable() != '') { $responsable->setValue($PERFIL->getResponsable()); } //Modifico el valor del boton $aceptar->setValue('Modificar'); //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(); } } // }}} //VALIDO EL FORMULARIO {{{ if ($FORM->validate()) { // VEO SI SE CANCELO {{{ $botones = $FORM->getSubmitValue('botones'); if (@$botones['cancelar']) { header('Location: perfiles'); } // }}} else { $id_perfil =& $FORM->getElement ('id_perfil' ); $desc_perfil =& $FORM->getElement ('desc_perfil'); $permisos =& $FORM->getElement ('permisos' ); $responsable =& $FORM->getElement ('responsable'); $group =& $FORM->getElement ('botones' ); $group =& $group->getElements('aceptar' ); $aceptar =& $group[0]; $PERFIL->setDescripcion($desc_perfil->_text ); $PERFIL->setResponsable($responsable->getValue()); $PERFIL->setPermisos ($permisos->getSelected()); //Le asigno al perfil los permisos seleccionados //Grabo y verifico si se produjo algun error $res = $PERFIL->guardarDatos($aceptar->getValue()); if (PEAR::isError($res)) { $ERROR = new MECON_HTML_Error($res->getMessage()); if ($aceptar->getValue() == 'Eliminar') { $FORM->freeze(); } } else { $FORM->freeze(); header('Location: perfiles'); } } } // }}} //DIBUJO LA PAGINA {{{ $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif'); $row = array ($imagen->toHtml().' SISTEMA: '.$SISTEMA->getNombre().''); $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0'); $TABLA3->addRow($row,'align=left'); $MARCO->addTitle('ABM Perfil'); $MARCO->addBody($TABLA3); if (isset($ERROR)) { $MARCO->addBody($ERROR); } $MARCO->addBody($FORM); $MARCO->display(); // //FIN ?>