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->chequear(SAMURAI_ALTA_PERFIL,SAMURAI_BAJA_PERFIL,SAMURAI_MODI_PERFIL);
27 require_once 'MECON/HTML/QuickForm.php';
28 require_once 'MECON/HTML/Tabla.php';
29 require_once 'MECON/HTML/Error.php';
30 require_once 'SAMURAI/Perfil.php';
31 require_once 'SAMURAI/Permiso.php';
32 require_once 'SAMURAI/Sistema.php';
33 require_once 'MECON/HTML/Image.php';
35 //CREO LOS OBJETO NECESARIOS {{{
36 if (@$_GET['id_perfil']) {
37 $id_perfil = $_GET['id_perfil'];
39 elseif (@$_POST['id_perfil']) {
40 $id_perfil = $_POST['id_perfil'];
45 $FORM = new MECON_HTML_QuickForm ('perfiles_abm','post','perfiles-abm');
46 $SISTEMA = new SAMURAI_Sistema ($DB, $_SESSION['samurai']['id_sistema']);
47 $PERFIL = new SAMURAI_Perfil ($DB, $id_perfil);
49 if ($PERFIL->getResponsable()) {
50 $responsable = $PERFIL->getResponsable();
53 $responsable = $_SESSION['samurai']['login'];
56 if (!@$_GET['id_perfil']) {
57 if (@$_GET['desc_perfil']) {
58 $PERFIL->setDescripcion(@$_GET['desc_perfil']);
61 $PERFIL->setDescripcion(@$_POST['desc_ant']);
64 $descripcion = $PERFIL->getDescripcion();
66 //OBTENGO LOS PERMISOS DEL SISTEMA {{{
67 $ASOCIACIONES = $SISTEMA->getAsociaciones();
69 foreach ($ASOCIACIONES as $as) {
70 $clave = $as['id'].'##'.$as['obs'];
71 $texto = ($as['obs'] != '') ? $as['desc'].' - '.$as['obs']: $as['desc'];
72 $PERMISOS[$clave] = $texto;
75 //AGREGO LOS ELEMENTOS DEL FORM {{{
77 $FORM->addElement ('header', 'cabecera', 'ABM Perfiles');
78 $FORM->addElement ('hidden', 'id_perfil', $id_perfil);
79 $FORM->addElement ('hidden', 'desc_ant' , $descripcion);
80 $FORM->addElement ('static', 'desc_perfil', 'Descripcion', $descripcion);
81 $FORM->addElement ('select', 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'true'));
82 if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
83 $FORM->addElement ('select', 'tipo_perfil', 'Tipo Perfil', array('E' => 'Externo', 'I' => 'Interno', 'D' => 'Dios'), array ('size' => '1'));
85 $FORM->addElement ('hidden', 'responsable', $responsable);
86 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
87 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location=\'perfiles\';return false;'));
88 $FORM->addGroup($group,'botones');
91 $ERROR = new MECON_HTML_Error('El sistema no posee permisos asociados.');
94 //AGREGO LAS REGLAS DE VALIDACION {{{
95 $FORM->addRule ('permisos', 'Se debe seleccionar al menos un permiso', 'required');
97 //CARGO LOS DATOS SI YA EXISTEN EN BASE {{{
98 if (isset($_GET['accion']) && $_GET['accion'] != '') {
100 $id_perfil =& $FORM->getElement ('id_perfil' );
101 $desc_perfil =& $FORM->getElement ('desc_perfil');
102 $permisos =& $FORM->getElement ('permisos' );
104 if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
105 $tipo_perfil =& $FORM->getElement ('tipo_perfil');
107 $responsable =& $FORM->getElement ('responsable');
108 $group =& $FORM->getElement ('botones' );
109 $group =& $group->getElements('aceptar' );
110 $aceptar =& $group[0];
112 $permisos->setSelected($PERFIL->getPermisos());
114 if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
115 $tipo_perfil->setSelected($PERFIL->getTipo());
118 if ($PERFIL->getResponsable() != '') {
119 $responsable->setValue($PERFIL->getResponsable());
122 //Modifico el valor del boton
123 $aceptar->setValue('Modificar');
125 //ELIMINACION -> modifico el valor del boton
126 if ($_GET['accion'] == 'e') {
127 $aceptar->setValue('Eliminar');
128 $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
133 //VALIDO EL FORMULARIO {{{
134 if ($FORM->validate()) {
135 // VEO SI SE CANCELO {{{
136 $botones = $FORM->getSubmitValue('botones');
137 if (@$botones['cancelar']) {
138 header('Location: perfiles');
142 $id_perfil =& $FORM->getElement ('id_perfil' );
143 $desc_perfil =& $FORM->getElement ('desc_perfil');
144 $permisos =& $FORM->getElement ('permisos' );
146 if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
147 $tipo_perfil =& $FORM->getElement ('tipo_perfil');
148 $tipo_perfil_tmp = $tipo_perfil->getSelected();
150 $responsable =& $FORM->getElement ('responsable');
151 $group =& $FORM->getElement ('botones' );
152 $group =& $group->getElements('aceptar' );
153 $aceptar =& $group[0];
155 $PERFIL->setDescripcion($desc_perfil->_text );
156 $PERFIL->setResponsable($responsable->getValue());
157 $PERFIL->setPermisos ($permisos->getSelected()); //Le asigno al perfil los permisos seleccionados
159 if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
160 $PERFIL->setTipo ($tipo_perfil_tmp['0'] );
163 //Grabo y verifico si se produjo algun error
164 $res = $PERFIL->guardarDatos($aceptar->getValue());
166 if (PEAR::isError($res)) {
167 $ERROR = new MECON_HTML_Error($res->getMessage());
168 if ($aceptar->getValue() == 'Eliminar') {
174 header('Location: perfiles');
179 //DIBUJO LA PAGINA {{{
180 $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
181 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
182 $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
183 $TABLA3->addRow($row,'align=left');
185 $MARCO->addTitle('ABM Perfil');
186 $MARCO->addBody($TABLA3);
188 $MARCO->addBody($ERROR);
190 $MARCO->addBody($FORM);