X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/d0ae155a8be2168110755cce58865068b34bfe91..c89294f672d0c91e2a749e041b855e82bfc643eb:/sistema/www/perfiles/perfiles.php?ds=sidebyside
diff --git a/sistema/www/perfiles/perfiles.php b/sistema/www/perfiles/perfiles.php
index 2d90f2d..4445920 100644
--- a/sistema/www/perfiles/perfiles.php
+++ b/sistema/www/perfiles/perfiles.php
@@ -22,27 +22,32 @@
require_once 'MECON/HTML/Tabla.php';
require_once 'SAMURAI/Perfil.php';
+ require_once 'SAMURAI/Sistema.php';
//LINKS A PERFILES-ABM {{{
- $aHref = '';
+ $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');
@@ -62,6 +67,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();