]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/perfiles/perfiles.php
Retoques varios. Nada grave
[mecon/samurai.git] / sistema / www / perfiles / perfiles.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
3 // +----------------------------------------------------------------------+
4 // | PHP Version 4                                                        |
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 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // 
22
23
24 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
25 $SAMURAI_PERM->chequear(SAMURAI_ALTA_PERFIL,SAMURAI_BAJA_PERFIL,SAMURAI_MODI_PERFIL);
26 //}}}
27 //REQUIRE ONCE {{{
28     require_once 'MECON/HTML/Tabla.php';
29     require_once 'SAMURAI/Perfil.php';
30     require_once 'SAMURAI/Sistema.php';
31 //}}}
32 //LINKS {{{
33     $aHrefPopup = '<a href="" onClick="window.open(\'perfiles-datos?id_perfil=##PERFIL##\',\'perfilesdatos\',\'height=300,width=400,scrollbars=yes\');return false;">';
34     $aHref      = '<a href="perfiles-abm?accion=##ACCION##&id_perfil=##NUEVO##">';
35     $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar Perfil"></a>';
36     $aHrefElim  = $aHref.'<img src="/MECON/images/general_eliminar.gif"  border="0" alt="Eliminar Perfil" ></a>';
37 // }}}
38 //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
39 if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) {
40     header('Location: ./../sel-sistema');    
41 }
42 // }}}   
43 //CREO LOS OBJETOS NECESARIOS {{{
44     $TABLA2 = new MECON_HTML_Tabla ('cellspacing=0');
45     $TABLA  = new MECON_HTML_Tabla ('cellpadding=2');
46     $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
47     $SISTEMA = new SAMURAI_Sistema($DB, $_SESSION['samurai']['id_sistema']);
48 // }}}
49 //OBTENGO LA INFORMACION DE LA BASE {{{
50     $perfiles = SAMURAI_Perfil::getPerfiles($DB, null, $_SESSION['samurai']['id_sistema']);
51 // }}}
52 //AGREGO LOS DATOS A LAS TABLAS {{{
53     $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
54     $row    = array ($imagen->toHtml().'&nbsp;<b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
55     $TABLA3->addRow($row,'align=left'); 
56     
57     //Agrego el link a nuevo
58     if ($SAMURAI_PERM->tiene(SAMURAI_ALTA_PERFIL)) {
59         $row   = array ('<a href="perfiles-nuevo"><img src="/MECON/images/general_nuevo.gif" border="0">Ingresar&nbsp;Nuevo&nbsp;Perfil</a>');
60         $TABLA2->addRow($row,'align=right');    
61     }
62     //Genero la cabecera de la tabla
63     $row   = array ('Id','Descripcion');
64     if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
65         $row[] = 'Tipo';
66     }    
67     if ($SAMURAI_PERM->tiene(SAMURAI_MODI_PERFIL)) {
68         $row[] = 'Modif.';
69     }    
70     if ($SAMURAI_PERM->tiene(SAMURAI_BAJA_PERFIL)) {
71         $row[] = 'Elim.';
72     }    
73     
74     $TABLA->addRow($row,'cabecera');
75     foreach ($perfiles as $perfil) {
76         $Popup = ereg_replace('##PERFIL##', $perfil->getId(), $aHrefPopup);
77         $Modif = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefModif);
78         $Elim  = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefElim );
79         $Popup = $Popup.$perfil->getDescripcion().'</a>';
80         $Modif = ereg_replace('##ACCION##', 'm'             , $Modif     );
81         $Elim  = ereg_replace('##ACCION##', 'e'             , $Elim      );
82         $row = array ($perfil->getId(), $Popup);
83         
84         if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
85             $row[] = $perfil->getTipo();
86         }    
87         if ($SAMURAI_PERM->tiene(SAMURAI_MODI_PERFIL)) {
88             $row[] = $Modif;
89         }    
90         if ($SAMURAI_PERM->tiene(SAMURAI_BAJA_PERFIL)) {
91             $row[] = $Elim;
92         }    
93         $TABLA->addRow($row);
94     }
95 // }}}
96 //DIBUJO LA PAGINA {{{
97     $MARCO->addBody($TABLA3);
98     $MARCO->addBody($TABLA2->toHtml(1));
99     $MARCO->addBody($TABLA);
100     $MARCO->display();
101 // }}}
102 //FIN
103 ?>