X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/94983fa84d06dc5e6f99f6b570245bcf08b96a75..1374a67aa3346cd696e5162c5811e3cc1c742376:/sistema/www/permisos/permisos.php
diff --git a/sistema/www/permisos/permisos.php b/sistema/www/permisos/permisos.php
index b23f28b..c286052 100644
--- a/sistema/www/permisos/permisos.php
+++ b/sistema/www/permisos/permisos.php
@@ -21,42 +21,55 @@
//
require_once 'MECON/HTML/Tabla.php';
+ require_once 'SAMURAI/Permiso.php';
//LINKS A PERMISOS-ABM {{{
- $aHref = '';
- $aHrefModif = $aHref.'';
- $aHrefElim = $aHref.'';
+ $aH = '';
+ $aHModif = $aH.'';
+ $aHElim = $aH.'';
+ $aHModifdes = '';
+ $aHElimdes = '';
// }}}
+//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 {{{