]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/perfiles/perfiles-nuevo.php
Cambios varios para que funcione bien con Netscape (Aunque ya no se si es asi)
[mecon/samurai.git] / sistema / www / perfiles / perfiles-nuevo.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 jul  8 12:58:06 ART 2003
17 // | Author:  Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 //
22 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
23 $SAMURAI_PERM->chequear(SAMURAI_ALTA_PERFIL);
24 //}}}
25
26 //REQUIRE_ONCE {{{
27     require_once 'PEAR.php';
28     require_once 'MECON/HTML/QuickForm.php';
29     require_once 'MECON/HTML/Tabla.php';
30     require_once 'SAMURAI/Perfil.php';
31     require_once 'SAMURAI/Sistema.php';
32 //}}}
33 //CREO LOS OBJETO NECESARIOS {{{
34     $FORM = new MECON_HTML_QuickForm ('perfiles_nuevo','post','perfiles-nuevo');
35     $SISTEMA = new SAMURAI_Sistema ($DB, $_SESSION['samurai']['id_sistema']);
36 // }}}
37 //AGREGO LOS ELEMENTOS DEL FORM {{{
38     $FORM->addElement ('header', 'cabecera'   , 'Nuevo Perfil');
39     $FORM->addElement ('select', 'perfiles'   , 'Perfiles', '', array('size' => '1'));
40     $FORM->addElement ('text'  , 'filtro'     , 'Filtrar' , array('size' => '50'));
41     $FORM->addElement ('text'  , 'descripcion', 'Nombre'  , array('size' => '50'));
42     $group[] = HTML_QuickForm::createElement('submit', 'continuar', 'Continuar');
43     $group[] = HTML_QuickForm::createElement('submit', 'filtrar'  , 'Filtrar'  );
44     $group[] = HTML_QuickForm::createElement('submit', 'cancelar' , 'Cancelar', array ('onClick' => 'javascript:window.location =\'perfiles\';return false;') );
45     $FORM->addGroup($group,'botones');
46 // }}}
47 //RESTRINJO EL FORMATO DEL NOMBRE DEL PERFIL{{{
48     $FORM->addRule ('descripcion', 'El nombre del perfil solo puede contener letras y/o numeros.', 'regex','/^[a-zA-Z0-9 ]+$/');
49 // }}}
50 // CARGO LA INFORMACION EN EL SELECT DE PERFILES {{{
51     $botones     = $FORM->getSubmitValue('botones');
52     $perfiles    =& $FORM->getElement('perfiles');
53     $descripcion =& $FORM->getElement('descripcion');
54     if (@$botones['cancelar']) {
55         header('Location: perfiles');
56     }
57     if (!isset($botones['filtrar'])) {
58         $PERFILES = SAMURAI_Perfil::getArrayPerfiles($DB);
59     }
60     elseif (@$botones['filtrar']) {
61         $filtro   =& $FORM->getElement('filtro'); 
62         $PERFILES = SAMURAI_Perfil::getArrayPerfiles($DB, $filtro->getValue());
63     }
64     $perfiles->addOption('--', '--');
65     $perfiles->loadArray($PERFILES);
66 // }}}
67 // VALIDO EL FORMULARIO {{{
68     if ($FORM->validate()) {
69         if (@$botones['continuar']) { //Ya selecciono un nombre para el perfil
70             $res = '';
71             $tmp = $perfiles->getSelected();
72             if ((!@$descripcion->getvalue() && $tmp['0'] == '--') || ($descripcion->getvalue() && $tmp['0'] != '--')) {
73                 $res = new PEAR_Error("Debe seleccionar un perfil del combo o ingresar un nombre en la casilla correspondiente.<br>Solo una de las dos opciones.");
74                 @$descripcion->setValue('');
75             }
76             elseif ($tmp['0'] != '--') {
77                 //verificar que el sistema no tenga una asociacion con ese perfil
78                 if (SAMURAI_Perfil::existeAsociacion($DB, $tmp['0'], $_SESSION['samurai']['id_sistema'])) {
79                     $res = new PEAR_Error("El sistema ya tiene asociado el perfil seleccionado, modifique sus permisos desde la seccion perfiles.");
80                 }
81                 else {
82                     header('Location: perfiles-abm?id_perfil='.$tmp['0']);
83                 }
84             }
85             elseif ($descripcion->getValue()) {
86                 //Verificar que no exista un perfil con la misma descripcion
87                 //Reduzco los blancos
88                 $temp = $descripcion->getValue();
89                 $tt = split (' ', $temp);
90                 $rta = ''; 
91                 foreach ($tt as $t) {
92                     if ($t != '') {
93                         $rta.= $t.' ';
94                     }
95                 }
96                 $rta = rtrim($rta);
97                 // 
98                 if (SAMURAI_Perfil::existePerfil($DB, $rta)) {
99                     $res = new PEAR_Error("Ya existe un perfil con ese nombre, seleccionelo del combo.<br>Recuerde que varios espacios se reduciran a uno solo (Ej: Agregar&nbsp;&nbsp;&nbsp;&nbsp; Usuario -> Agregar Usuario)");
100                 }
101                 else {
102                     $temp = ereg_replace(' ' , '%20', $rta); //Cambio los espacios por %20 para que no chille el netscape
103                     header('Location: perfiles-abm?desc_perfil='.$temp);
104                 }
105             }
106             if (PEAR::isError($res)) {
107                 $TABLA = new MECON_HTML_Tabla ('cellspacing=0');
108                 $row = array ('<font color="red"><b>'.$res->getMessage().'</b></font>');
109                 $TABLA->addRow($row,'align=left');
110             }
111         } 
112     }
113 // }}}
114 //MUESTRO LA PAGINA {{{
115 //AGREGO LOS DATOS A LAS TABLAS {{{
116     $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
117     $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
118     $row    = array ($imagen->toHtml().'&nbsp;<b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
119     $TABLA3->addRow($row,'align=left');    
120 //}}} 
121
122     $MARCO->addBody($TABLA3);
123     if (isset($TABLA)) {
124         $MARCO->addBody($TABLA);
125     }
126     $MARCO->addBody($FORM);
127     $MARCO->display();
128 // }}}
129 ?>