X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/f3692172201650cb32cd500e1add6f5735b02a8c..1dccba5bb5232c5350e84481851cb5a500df623d:/sistema/www/perfiles/perfiles-datos.php diff --git a/sistema/www/perfiles/perfiles-datos.php b/sistema/www/perfiles/perfiles-datos.php index 982fd6e..82ba011 100644 --- a/sistema/www/perfiles/perfiles-datos.php +++ b/sistema/www/perfiles/perfiles-datos.php @@ -65,23 +65,10 @@ $SAMURAI_PERM->chequear(SAMURAI_PERM_PERFIL_ALTA,SAMURAI_PERM_PERFIL_BAJA,SAMURA $PERMISOS[$clave] = $texto; } // }}} -//TRADUZCO EL TIPO DE PERFIL {{{ - $TipoPerfil = $PERFIL->getTipo(); - - switch ($TipoPerfil) { - case 'I': $TipoPerfil = 'Interno'; - break; - case 'E': $TipoPerfil = 'Externo'; - break; - case 'D': $TipoPerfil = 'Dios'; - break; - } -//}}} //AGREGO LOS ELEMENTOS AL FORM {{{ $FORM->addElement ('static', 'id_perfil' , 'Id Perfil' , $PERFIL->getId() ); $FORM->addElement ('static', 'desc_perfil', 'Descricion' , $PERFIL->getDescripcion() ); $perf =& $FORM->addElement('select', 'permisos' , 'Permisos' , $PERMISOS, array ('size'=>'5')); - $FORM->addElement ('static', 'tipo_perfil', 'Tipo Perfil' , $TipoPerfil ); $perf->setSelected($PERFIL->getPermisos()); $FORM->freeze(); // }}}