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: lun jul 7 13:30:05 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_PERFIL_BAJA,SAMURAI_PERM_PERFIL_MODIF, SAMURAI_PERM_DEVELOPER);
28 $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
31 //XXX OBTENGO LA ACCION {{{
32 switch (@$_REQUEST['accion']) {
34 $b_accion = 'Modificar';
38 $b_accion = 'Eliminar';
49 require_once 'MECON/HTML/QuickForm.php';
50 require_once 'MECON/HTML/Tabla.php';
51 require_once 'MECON/HTML/Error.php';
52 require_once 'SAMURAI/Perfil.php';
53 require_once 'SAMURAI/Permiso.php';
54 require_once 'SAMURAI/Sistema.php';
55 require_once 'MECON/HTML/Image.php';
57 //CREO LOS OBJETO NECESARIOS {{{
58 if (@$_GET['id_perfil']) {
59 $id_perfil = $_GET['id_perfil'];
61 elseif (@$_POST['id_perfil']) {
62 $id_perfil = $_POST['id_perfil'];
67 $FORM = new MECON_HTML_QuickForm ('perfiles_abm','post','perfiles-abm');
68 $FORM->renderer->updateAttributes('width="400"');
69 $SISTEMA = new SAMURAI_Sistema ($DB, $_SESSION['samurai']['id_sistema']);
70 $PERFIL = new SAMURAI_Perfil ($DB, $id_perfil,
71 $_SESSION['samurai']['id_sistema']);
73 if ($PERFIL->getResponsable()) {
74 $responsable = $PERFIL->getResponsable();
77 $responsable = $_SESSION['usuario'];
80 if (!@$_GET['id_perfil']) {
81 if (@$_GET['desc_perfil']) {
82 $PERFIL->setDescripcion(@$_GET['desc_perfil']);
85 $PERFIL->setDescripcion(@$_POST['desc_ant']);
88 $descripcion = $PERFIL->getDescripcion();
90 //OBTENGO LOS PERMISOS DEL SISTEMA {{{
91 $ASOCIACIONES = $SISTEMA->getAsociaciones();
93 foreach ($ASOCIACIONES as $as) {
94 $clave = $as['id'].'##'.$as['obs'];
95 $texto = ($as['obs'] != '') ? $as['desc'].' - '.$as['obs']: $as['desc'];
96 $PERMISOS[$clave] = $texto;
99 //AGREGO LOS ELEMENTOS DEL FORM {{{
101 $FORM->addElement ('header', 'cabecera', 'ABM Perfiles');
102 $FORM->addElement ('hidden', 'id_perfil', $id_perfil);
103 $FORM->addElement ('hidden', 'desc_ant' , $descripcion);
104 $FORM->addElement ('static', 'desc_perfil', 'Descripción', $descripcion);
105 $FORM->addElement ('select', 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'true'));
106 $FORM->addElement ('hidden', 'responsable', $responsable);
107 $FORM->addElement ('hidden', 'accion', $accion);
108 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , $b_accion);
109 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location=\'perfiles\';return false;'));
110 $FORM->addGroup($group,'botones');
113 $ERROR = new MECON_HTML_Error('El sistema no posee permisos asociados.');
116 //AGREGO LAS REGLAS DE VALIDACION {{{
117 $FORM->addRule ('permisos', 'Se debe seleccionar al menos un permiso', 'required');
119 //CARGO LOS DATOS SI YA EXISTEN EN BASE {{{
120 if (isset($_GET['accion']) && $_GET['accion'] != '') {
122 $id_perfil =& $FORM->getElement ('id_perfil' );
123 $desc_perfil =& $FORM->getElement ('desc_perfil');
124 $permisos =& $FORM->getElement ('permisos' );
125 $responsable =& $FORM->getElement ('responsable');
126 $group =& $FORM->getElement ('botones' );
127 $group =& $group->getElements('aceptar' );
128 $aceptar =& $group[0];
130 $permisos->setSelected($PERFIL->getPermisos());
132 if ($PERFIL->getResponsable() != '') {
133 $responsable->setValue($PERFIL->getResponsable());
136 //Modifico el valor del boton
137 $aceptar->setValue('Modificar');
139 //ELIMINACION -> modifico el valor del boton
140 if ($_GET['accion'] == 'e') {
141 $aceptar->setValue('Eliminar');
142 $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
147 //VALIDO EL FORMULARIO {{{
148 if ($FORM->validate()) {
149 // VEO SI SE CANCELO {{{
150 $botones = $FORM->getSubmitValue('botones');
151 if (@$botones['cancelar']) {
152 header('Location: perfiles');
156 $id_perfil =& $FORM->getElement ('id_perfil' );
157 $desc_perfil =& $FORM->getElement ('desc_perfil');
158 $permisos =& $FORM->getElement ('permisos' );
159 $responsable =& $FORM->getElement ('responsable');
160 $group =& $FORM->getElement ('botones' );
161 $group =& $group->getElements('aceptar' );
162 $aceptar =& $group[0];
164 $PERFIL->setDescripcion($desc_perfil->_text );
165 $PERFIL->setResponsable($responsable->getValue());
166 $PERFIL->setPermisos ($permisos->getSelected()); //Le asigno al perfil los permisos seleccionados
168 //Grabo y verifico si se produjo algun error
169 $res = $PERFIL->guardarDatos($aceptar->getValue());
171 if (PEAR::isError($res)) {
172 $ERROR = new MECON_HTML_Error($res->getMessage());
173 if ($aceptar->getValue() == 'Eliminar') {
179 header('Location: perfiles');
184 //DIBUJO LA PAGINA {{{
185 $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
186 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
187 $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
188 $TABLA3->addRow($row,'align=left');
190 $MARCO->addTitle('ABM Perfil');
191 $MARCO->addBody($TABLA3);
193 $MARCO->addBody($ERROR);
195 $MARCO->addBody($FORM);