// +----------------------------------------------------------------------+
//
// $Id$
//
//REQUIRE ONCE {{{
require_once 'MECON/HTML/Tabla.php';
require_once 'SAMURAI/Usuario.php';
require_once 'SAMURAI/Sistema.php';
require_once 'HTML/Image.php';
// }}}
//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');
}
// }}}
//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 {{{
$usuarios = SAMURAI_Usuario::getUsuarios($DB, $_SESSION['samurai']['id_sistema']);
// }}}
//AGREGO LOS DATOS A LAS TABLAS {{{
$imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
$row = array ($imagen->toHtml().' SISTEMA: '.$SISTEMA->getNombre().'');
$TABLA3->addRow($row,'align=left');
$row = array ($aHref.'Agregar Nuevo Usuario');
$TABLA2->addRow($row,'align=right');
$row = array ('Login','Nombre','Modif.','Elim.');
$TABLA->addRow($row,'cabecera');
foreach ($usuarios as $usuario) {
$Popup = ereg_replace('##LOGIN##' , $usuario->getLogin(), $aHrefPopup);
$Modif = ereg_replace('##NUEVO##' , $usuario->getLogin(), $aHrefModif);
$Elim = ereg_replace('##NUEVO##' , $usuario->getLogin(), $aHrefElim );
$Popup = $Popup.$usuario->getLogin().'';
$Modif = ereg_replace('##ACCION##', 'm' , $Modif );
$Elim = ereg_replace('##ACCION##', 'e' , $Elim );
$row = array ( $Popup,
$usuario->getNombre(),
$Modif,
$Elim,
);
$TABLA->addRow($row);
}
// }}}
//DIBUJO LA PAGINA {{{
$MARCO->addBody($TABLA3);
$MARCO->addBody($TABLA2->toHtml(1));
$MARCO->addBody($TABLA);
$MARCO->display();
// }}}
//FIN
?>