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