]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/perfiles/perfiles-nuevo.php
111241d286e6ddbae5e945d2648d0057934958d4
[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
23     require_once 'PEAR.php';
24     require_once 'MECON/HTML/QuickForm.php';
25     require_once 'MECON/HTML/Tabla.php';
26     require_once 'SAMURAI/Perfil.php';
27     require_once 'SAMURAI/Sistema.php';
28
29 //CREO LOS OBJETO NECESARIOS {{{
30     $FORM = new MECON_HTML_QuickForm ('perfiles_nuevo','post','perfiles-nuevo');
31     $SISTEMA = new SAMURAI_Sistema ($DB, $_SESSION['samurai']['id_sistema']);
32 // }}}
33 //AGREGO LOS ELEMENTOS DEL FORM {{{
34     $FORM->addElement ('header', 'cabecera'   , 'Nuevo Perfil');
35     $FORM->addElement ('select', 'perfiles'   , 'Perfiles', '', array('size' => '1'));
36     $FORM->addElement ('text'  , 'filtro'     , 'Filtrar' , array('size' => '50'));
37     $FORM->addElement ('text'  , 'descripcion', 'Nombre'  , array('size' => '50'));
38     $group[] = HTML_QuickForm::createElement('submit', 'continuar', 'Continuar');
39     $group[] = HTML_QuickForm::createElement('submit', 'filtrar'  , 'Filtrar'  );
40     $group[] = HTML_QuickForm::createElement('submit', 'cancelar' , 'Cancelar' );
41     $FORM->addGroup($group,'botones');
42 // }}}
43 ///RESTRINJO EL FORMATO DEL NOMBRE DEL PERFIL
44     $FORM->addRule ('descripcion', 'El nombre del perfil solo puede contener letras y/o numeros.', 'regex','/^[a-zA-Z0-9 ]+$/');
45 // }}}
46 // CARGO LA INFORMACION EN EL SELECT DE PERFILES
47     $botones     = $FORM->getSubmitValue('botones');
48     $perfiles    =& $FORM->getElement('perfiles');
49     $descripcion =& $FORM->getElement('descripcion');
50     if (@$botones['cancelar']) {
51         header('Location: perfiles');
52     }
53     if (!isset($botones['filtrar'])) {
54         $PERFILES = SAMURAI_Perfil::getArrayPerfiles($DB);
55     }
56     elseif (@$botones['filtrar']) {
57         $filtro   =& $FORM->getElement('filtro'); 
58         $PERFILES = SAMURAI_Perfil::getArrayPerfiles($DB, $filtro->getValue());
59     }
60     $perfiles->addOption('--', '--');
61     $perfiles->loadArray($PERFILES);
62 // }}}
63 // VALIDO EL FORMULARIO {{{
64     if ($FORM->validate()) {
65         if (@$botones['continuar']) { //Ya selecciono un nombre para el perfil
66             $res = '';
67             $tmp = $perfiles->getSelected();
68             if ((!@$descripcion->getvalue() && $tmp['0'] == '--') || ($descripcion->getvalue() && $tmp['0'] != '--')) {
69                 $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.");
70                 @$descripcion->setValue('');
71             }
72             elseif ($tmp['0'] != '--') {
73                 //verificar que el sistema no tenga una asociacion con ese perfil
74                 if (SAMURAI_Perfil::existeAsociacion($DB, $tmp['0'], $_SESSION['samurai']['id_sistema'])) {
75                     $res = new PEAR_Error("El sistema ya tiene asociado el perfil seleccionado, modifique sus permisos desde la seccion perfiles.");
76                 }
77                 else {
78                     header('Location: perfiles-abm?id_perfil='.$tmp['0']);
79                 }
80             }
81             elseif ($descripcion->getValue()) {
82                 //Verificar que no exista un perfil con la misma descripcion
83                 //Reduzco los blancos
84                 $temp = $descripcion->getValue();
85                 $tt = split (' ', $temp);
86                 $rta = ''; 
87                 foreach ($tt as $t) {
88                     if ($t != '') {
89                         $rta.= $t.' ';
90                     }
91                 }
92                 $rta = rtrim($rta);
93                 // 
94                 if (SAMURAI_Perfil::existePerfil($DB, $rta)) {
95                     $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)");
96                 }
97                 else {
98                     $temp = ereg_replace(' ' , '%20', $rta); //Cambio los espacios por %20 para que no chille el netscape
99                     header('Location: perfiles-abm?desc_perfil='.$temp);
100                 }
101             }
102             if (PEAR::isError($res)) {
103                 $TABLA = new Tabla ('cellspacing=0');
104                 $row = array ('<font color="red"><b>'.$res->getMessage().'</b></font>');
105                 $TABLA->addRow($row,'align=left');
106             }
107         } 
108     }
109 // }}}
110 //MUESTRO LA PAGINA {{{
111     $TABLA3 = new Tabla ('cellspacing=0');
112     $row   = array ('<b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
113     $TABLA3->addRow($row,'titulo align=left');    
114
115     $MARCO = new Marco ('../../conf/confSecciones.php');
116     $MARCO->addBody($TABLA3);
117     if (isset($TABLA)) {
118         $MARCO->addBody($TABLA);
119     }
120     $MARCO->addBody($FORM);
121     $MARCO->display();
122 // }}}
123 ?>