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