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 jul 8 12:58:06 ART 2003
17 // | Author: Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
22 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
23 $SAMURAI_PERM->setSistema(SAMURAI_PERM);
24 if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) {
25 $SAMURAI_PERM->setSistema($_SESSION['samurai']['id_sistema']);
26 $SAMURAI_PERM->chequear(SAMURAI_PERM_PERFIL_ALTA, SAMURAI_PERM_DEVELOPER);
28 $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
32 require_once 'PEAR.php';
33 require_once 'MECON/HTML/QuickForm.php';
34 require_once 'MECON/HTML/Tabla.php';
35 require_once 'SAMURAI/Perfil.php';
36 require_once 'SAMURAI/Sistema.php';
38 //CREO LOS OBJETO NECESARIOS {{{
39 $FORM = new MECON_HTML_QuickForm ('perfiles_nuevo','post','perfiles-nuevo');
40 $SISTEMA = new SAMURAI_Sistema ($DB, $_SESSION['samurai']['id_sistema']);
42 //AGREGO LOS ELEMENTOS DEL FORM {{{
43 $FORM->addElement ('header', 'cabecera' , 'Nuevo Perfil');
44 $FORM->addElement ('select', 'perfiles' , 'Perfiles', '', array('size' => '1'));
45 $FORM->addElement ('text' , 'filtro' , 'Filtrar' , array('size' => '50'));
46 $FORM->addElement ('text' , 'descripcion', 'Nombre' , array('size' => '50'));
47 $group[] = HTML_QuickForm::createElement('submit', 'continuar', 'Continuar');
48 $group[] = HTML_QuickForm::createElement('submit', 'filtrar' , 'Filtrar' );
49 $group[] = HTML_QuickForm::createElement('submit', 'cancelar' , 'Cancelar', array ('onClick' => 'javascript:window.location =\'perfiles\';return false;') );
50 $FORM->addGroup($group,'botones');
52 //RESTRINJO EL FORMATO DEL NOMBRE DEL PERFIL{{{
53 $FORM->addRule ('descripcion', 'El nombre del perfil solo puede contener letras y/o numeros.', 'regex','/^[a-zA-Z0-9 ]+$/');
55 // CARGO LA INFORMACION EN EL SELECT DE PERFILES {{{
56 $botones = $FORM->getSubmitValue('botones');
57 $perfiles =& $FORM->getElement('perfiles');
58 $descripcion =& $FORM->getElement('descripcion');
59 if (@$botones['cancelar']) {
60 header('Location: perfiles');
62 if (!isset($botones['filtrar'])) {
63 $PERFILES = SAMURAI_Perfil::getArrayPerfiles($DB);
65 elseif (@$botones['filtrar']) {
66 $filtro =& $FORM->getElement('filtro');
67 $PERFILES = SAMURAI_Perfil::getArrayPerfiles($DB, $filtro->getValue());
69 $perfiles->addOption('--', '--');
70 $perfiles->loadArray($PERFILES);
72 // VALIDO EL FORMULARIO {{{
73 if ($FORM->validate()) {
74 if (@$botones['continuar']) { //Ya selecciono un nombre para el perfil
76 $tmp = $perfiles->getSelected();
77 if ((!@$descripcion->getvalue() && $tmp['0'] == '--') || ($descripcion->getvalue() && $tmp['0'] != '--')) {
78 $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.");
79 @$descripcion->setValue('');
81 elseif ($tmp['0'] != '--') {
82 //verificar que el sistema no tenga una asociacion con ese perfil
83 if (SAMURAI_Perfil::existeAsociacion($DB, $tmp['0'], $_SESSION['samurai']['id_sistema'])) {
84 $res = new PEAR_Error("El sistema ya tiene asociado el perfil seleccionado, modifique sus permisos desde la seccion perfiles.");
87 header('Location: perfiles-abm?id_perfil='.$tmp['0']);
90 elseif ($descripcion->getValue()) {
91 //Verificar que no exista un perfil con la misma descripcion
93 $temp = $descripcion->getValue();
94 $tt = split (' ', $temp);
103 if (SAMURAI_Perfil::existePerfil($DB, $rta)) {
104 $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 Usuario -> Agregar Usuario)");
107 $temp = ereg_replace(' ' , '%20', $rta); //Cambio los espacios por %20 para que no chille el netscape
108 header('Location: perfiles-abm?desc_perfil='.$temp);
111 if (PEAR::isError($res)) {
112 $TABLA = new MECON_HTML_Tabla ('cellspacing=0');
113 $row = array ('<font color="red"><b>'.$res->getMessage().'</b></font>');
114 $TABLA->addRow($row,'align=left');
119 //MUESTRO LA PAGINA {{{
120 //AGREGO LOS DATOS A LAS TABLAS {{{
121 $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
122 $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
123 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
124 $TABLA3->addRow($row,'align=left');
127 $MARCO->addBody($TABLA3);
129 $MARCO->addBody($TABLA);
131 $MARCO->addBody($FORM);