X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/0ecc42815b25c93505bdc63406044ebd4c37283b..1374a67aa3346cd696e5162c5811e3cc1c742376:/sistema/www/permisos/permisos.php?ds=sidebyside diff --git a/sistema/www/permisos/permisos.php b/sistema/www/permisos/permisos.php index db852f8..c286052 100644 --- a/sistema/www/permisos/permisos.php +++ b/sistema/www/permisos/permisos.php @@ -18,49 +18,58 @@ // +----------------------------------------------------------------------+ // // $Id$ -// $Author$ -// $URL$ -// $Date$ -// $Rev$ // require_once 'MECON/HTML/Tabla.php'; + require_once 'SAMURAI/Permiso.php'; //LINKS A PERMISOS-ABM {{{ - $aHref = ''; - $aHrefModif = $aHref.'Modificar Permiso'; - $aHrefElim = $aHref.'Eliminar Permiso'; + $aH = ''; + $aHModif = $aH.'Modificar Permiso'; + $aHElim = $aH.'Eliminar Permiso'; + $aHModifdes = 'No se puede modificar Permiso'; + $aHElimdes = 'No se puede eliminar Permiso'; // }}} +//VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{ +if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) { + header('Location: ./../sel-sistema'); +} +// }}} //CREO LOS OBJETOS NECESARIOS {{{ - if (isset($_SESSION['samurai']['id_sistema'])) { - $SAMURAI = new Samurai($DB,$_SESSION['samurai']['id_sistema']); - } - else { - $SAMURAI = new Samurai($DB); - } $TABLA2 = new Tabla ('cellspacing=0'); $TABLA = new Tabla ('cellpadding=2'); - // }}} //OBTENGO LA INFORMACION DE LA BASE {{{ - $permisos = $SAMURAI->getPermisos(); + $permisos = SAMURAI_Permiso::getPermisos($DB); // }}} //AGREGO LOS DATOS A LAS TABLAS {{{ - $row = array ($aHref.'Ingresar Nuevo Permiso'); + $row = array ($aH.'Ingresar Nuevo Permiso'); $TABLA2->addRow($row,'align=right'); $row = array ('Id','Descripcion','Modif.','Elim.'); $TABLA->addRow($row,'cabecera'); + foreach ($permisos as $permiso) { - $Modif = ereg_replace('##NUEVO##' , $permiso->getId(), $aHrefModif); - $Elim = ereg_replace('##NUEVO##' , $permiso->getId(), $aHrefElim ); - $Modif = ereg_replace('##ACCION##' , 'm' , $Modif ); - $Elim = ereg_replace('##ACCION##' , 'e' , $Elim ); + if ($permiso->asociadoASistema()) { + $Modif = $aHModifdes; + $Elim = $aHElimdes; + } + else { + $Modif = ereg_replace('##NUEVO##' , $permiso->getId(), $aHModif); + $Elim = ereg_replace('##NUEVO##' , $permiso->getId(), $aHElim ); + $Modif = ereg_replace('##ACCION##' , 'm' , $Modif ); + $Elim = ereg_replace('##ACCION##' , 'e' , $Elim ); + } $row = array ( $permiso->getId(), $permiso->getDescripcion(), $Modif, $Elim, ); $TABLA->addRow($row); + $TABLA->updateColAttributes(0,'width="10%" '); + $TABLA->updateColAttributes(1,'width="70%"'); + $TABLA->updateColAttributes(2,'width="10%"'); + $TABLA->updateColAttributes(3,'width="10%"'); + $TABLA->updateRowAttributes(0,'cabecera'); } // }}} //DIBUJO LA PAGINA {{{