X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/d0ae155a8be2168110755cce58865068b34bfe91..4a91ae5069fc847c7f27e84a8449fbbd0742e2b2:/sistema/www/perfiles/perfiles.php
diff --git a/sistema/www/perfiles/perfiles.php b/sistema/www/perfiles/perfiles.php
index 2d90f2d..1c98531 100644
--- a/sistema/www/perfiles/perfiles.php
+++ b/sistema/www/perfiles/perfiles.php
@@ -22,37 +22,45 @@
require_once 'MECON/HTML/Tabla.php';
require_once 'SAMURAI/Perfil.php';
+ require_once 'SAMURAI/Sistema.php';
-//LINKS A PERFILES-ABM {{{
- $aHref = '';
+//LINKS {{{
+ $aHrefPopup = '';
+ $aHref = '';
$aHrefModif = $aHref.'';
$aHrefElim = $aHref.'';
// }}}
//VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) {
- header('Location: sel-sistema');
+ header('Location: ./../sel-sistema');
}
// }}}
//CREO LOS OBJETOS NECESARIOS {{{
$TABLA2 = new Tabla ('cellspacing=0');
$TABLA = new Tabla ('cellpadding=2');
-
+ $TABLA3 = new Tabla ('cellspacing=0');
+ $SISTEMA = new SAMURAI_Sistema($DB, $_SESSION['samurai']['id_sistema']);
// }}}
//OBTENGO LA INFORMACION DE LA BASE {{{
- $perfiles = SAMURAI_Perfil::getPerfiles($DB);
+ $perfiles = SAMURAI_Perfil::getPerfiles($DB, null, $_SESSION['samurai']['id_sistema']);
// }}}
//AGREGO LOS DATOS A LAS TABLAS {{{
- $row = array ($aHref.'Ingresar Nuevo Perfil');
+ $imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
+ $row = array ($imagen->toHtml().' SISTEMA: '.$SISTEMA->getNombre().'');
+ $TABLA3->addRow($row,'align=left');
+ $row = array ('Ingresar Nuevo Perfil');
$TABLA2->addRow($row,'align=right');
$row = array ('Id','Descripcion','Tipo','Modif.','Elim.');
$TABLA->addRow($row,'cabecera');
foreach ($perfiles as $perfil) {
+ $Popup = ereg_replace('##PERFIL##', $perfil->getId(), $aHrefPopup);
$Modif = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefModif);
$Elim = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefElim );
+ $Popup = $Popup.$perfil->getDescripcion().'';
$Modif = ereg_replace('##ACCION##', 'm' , $Modif );
$Elim = ereg_replace('##ACCION##', 'e' , $Elim );
$row = array ( $perfil->getId(),
- $perfil->getDescripcion(),
+ $Popup,
$perfil->getTipo(),
$Modif,
$Elim,
@@ -62,6 +70,7 @@ if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) {
// }}}
//DIBUJO LA PAGINA {{{
$MARCO = new Marco ('../../conf/confSecciones.php');
+ $MARCO->addBody($TABLA3);
$MARCO->addBody($TABLA2->toHtml(1));
$MARCO->addBody($TABLA);
$MARCO->display();