X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/0ecc42815b25c93505bdc63406044ebd4c37283b..79cc4f777b6fe9d907ccad24a2fc65246d0253ed:/sistema/www/permisos/permisos.php
diff --git a/sistema/www/permisos/permisos.php b/sistema/www/permisos/permisos.php
index db852f8..b2fc33e 100644
--- a/sistema/www/permisos/permisos.php
+++ b/sistema/www/permisos/permisos.php
@@ -18,53 +18,64 @@
// +----------------------------------------------------------------------+
//
// $Id$
-// $Author$
-// $URL$
-// $Date$
-// $Rev$
//
+//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
+$SAMURAI_PERM->chequear(SAMURAI_DEVELOPER);
+//}}}
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');
-
+ $TABLA2 = new MECON_HTML_Tabla ('cellspacing=0');
+ $TABLA = new MECON_HTML_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 {{{
- $MARCO = new Marco ('../../conf/confSecciones.php');
$MARCO->addBody($TABLA2->toHtml(1));
$MARCO->addBody($TABLA);
$MARCO->display();