2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
3 // +----------------------------------------------------------------------+
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2003 The PHP Group |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license, |
9 // | that is bundled with this package in the file LICENSE, and is |
10 // | available at through the world-wide-web at |
11 // | http://www.php.net/license/2_02.txt. |
12 // | If you did not receive a copy of the PHP license and are unable to |
13 // | obtain it through the world-wide-web, please send a note to |
14 // | license@php.net so we can mail you a copy immediately. |
15 // +----------------------------------------------------------------------+
16 // | Created: mar may 27 15:16:38 ART 2003
17 // | Author: Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
23 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
24 if (!$SAMURAI_PERM->tiene(SAMURAI_ALTA_PERFIL,SAMURAI_BAJA_PERFIL,SAMURAI_MODI_PERFIL)) {
25 // header('Location: error')
30 require_once 'MECON/HTML/Tabla.php';
31 require_once 'SAMURAI/Perfil.php';
32 require_once 'SAMURAI/Sistema.php';
35 $aHrefPopup = '<a href="" onClick="window.open(\'perfiles-datos?id_perfil=##PERFIL##\',\'perfilesdatos\',\'height=300,width=400,scrollbars=yes\');return false;">';
36 $aHref = '<a href="perfiles-abm?accion=##ACCION##&id_perfil=##NUEVO##">';
37 $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar Perfil"></a>';
38 $aHrefElim = $aHref.'<img src="/MECON/images/general_eliminar.gif" border="0" alt="Eliminar Perfil" ></a>';
40 //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
41 if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) {
42 header('Location: ./../sel-sistema');
45 //CREO LOS OBJETOS NECESARIOS {{{
46 $TABLA2 = new MECON_HTML_Tabla ('cellspacing=0');
47 $TABLA = new MECON_HTML_Tabla ('cellpadding=2');
48 $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
49 $SISTEMA = new SAMURAI_Sistema($DB, $_SESSION['samurai']['id_sistema']);
51 //OBTENGO LA INFORMACION DE LA BASE {{{
52 $perfiles = SAMURAI_Perfil::getPerfiles($DB, null, $_SESSION['samurai']['id_sistema']);
54 //AGREGO LOS DATOS A LAS TABLAS {{{
55 $imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
56 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
57 $TABLA3->addRow($row,'align=left');
59 //Agrego el link a nuevo
60 if ($SAMURAI_PERM->tiene(SAMURAI_ALTA_PERFIL)) {
61 $row = array ('<a href="perfiles-nuevo"><img src="/MECON/images/general_nuevo.gif" border="0">Ingresar Nuevo Perfil</a>');
62 $TABLA2->addRow($row,'align=right');
64 //Genero la cabecera de la tabla
65 $row = array ('Id','Descripcion');
66 if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
69 if ($SAMURAI_PERM->tiene(SAMURAI_MODI_PERFIL)) {
72 if ($SAMURAI_PERM->tiene(SAMURAI_BAJA_PERFIL)) {
76 $TABLA->addRow($row,'cabecera');
77 foreach ($perfiles as $perfil) {
78 $Popup = ereg_replace('##PERFIL##', $perfil->getId(), $aHrefPopup);
79 $Modif = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefModif);
80 $Elim = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefElim );
81 $Popup = $Popup.$perfil->getDescripcion().'</a>';
82 $Modif = ereg_replace('##ACCION##', 'm' , $Modif );
83 $Elim = ereg_replace('##ACCION##', 'e' , $Elim );
84 $row = array ($perfil->getId(), $Popup);
86 if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
87 $row[] = $perfil->getTipo();
89 if ($SAMURAI_PERM->tiene(SAMURAI_MODI_PERFIL)) {
92 if ($SAMURAI_PERM->tiene(SAMURAI_BAJA_PERFIL)) {
98 //DIBUJO LA PAGINA {{{
99 $MARCO->addBody($TABLA3);
100 $MARCO->addBody($TABLA2->toHtml(1));
101 $MARCO->addBody($TABLA);