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 $SAMURAI_PERM->setSistema(SAMURAI_PERM);
25 if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) {
26 $SAMURAI_PERM->setSistema($_SESSION['samurai']['id_sistema']);
27 $SAMURAI_PERM->chequear(SAMURAI_PERM_PERFIL_ALTA,SAMURAI_PERM_PERFIL_BAJA,SAMURAI_PERM_PERFIL_MODIF, SAMURAI_PERM_DEVELOPER);
29 $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
33 require_once 'SAMURAI/Sistema.php';
34 require_once 'SAMURAI/Perfil.php';
35 require_once 'MECON/HTML/Image.php';
36 require_once 'MECON/HTML/TablaDB.php';
39 //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
40 if (!@$_SESSION['samurai']['id_sistema']) {
41 header('Location: ./../sel-sistema?redirect=perfiles/perfiles');
45 //VIÑETA CON EL SISTEMA EN EL CUAL SE ESTA TRABAJANDO {{{
46 $SISTEMA =& new SAMURAI_Sistema($DB, $_SESSION['samurai']['id_sistema']);
47 $tmp =& new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif', '>>');
48 $VINETA = '<div align="left">'. $tmp->toHTML() .' <b>SISTEMA: '.
49 $SISTEMA->getNombre().'</b></div>';
52 //OBTENGO LA INFORMACION DE LOS PERFILES {{{
53 $res = SAMURAI_Perfil::getPerfilesPager($DB, null, $_SESSION['samurai']['id_sistema']);
56 //CREO LA TABLA DE USUARIOS {{{
57 $TABLA =& new MECON_HTML_TablaDB ('Perfiles');
61 'perfiles-nuevo', 'Nuevo Perfil'
67 './../sel-sistema?redirect=perfiles/perfiles',
68 'Seleccionar otro sistema para trabajar'
74 $cabecera[] = 'Descripción';
76 //Agrego las columnas de modificacion y eliminacion {{{
77 $link = new MECON_HTML_Link ('perfiles-abm', null, array('accion' => 'm'));
78 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_MODIF)) {
79 $cabecera[] = 'Modif.';
80 $TABLA->addRowsIcon('modificar', 'id_perfil', $link);
82 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_BAJA)) {
83 $cabecera[] = 'Elimn.';
84 $link->setGetVar('accion', 'e');
85 $TABLA->addRowsIcon('eliminar', 'id_perfil', $link);
89 $TABLA->addRow($cabecera, 'cabecera');
90 $pager = $TABLA->addPager($res, null, new MECON_HTML_Link ('perfiles', null), 25);
91 $TABLA->addRowsData('%s', array ('id_perfil'), 'prepend');
92 $TABLA->addRowsData('<a href="" onClick="window.open(\'perfiles-datos?id_perfil=%s'
93 .'\',\'perfildatos\',\'height=400,width=400,scrollbars=yes\');'
94 .'return false;">%s</a>',
95 array ('id_perfil', 'descripcion'), 'prepend'
97 $TABLA->addRows($pager, array());
100 //DIBUJO LA PAGINA {{{
101 $MARCO->addBody($VINETA);
102 $MARCO->addBody($TABLA);