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_PERM_PERFIL_ALTA,SAMURAI_PERM_PERFIL_BAJA,SAMURAI_PERM_PERFIL_MODIF, SAMURAI_PERM_DEVELOPER);
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,
48 $_SESSION['samurai']['id_sistema']);
50 if ($PERFIL->getResponsable()) {
51 $responsable = $PERFIL->getResponsable();
54 $responsable = $_SESSION['usuario'];
57 if (!@$_GET['id_perfil']) {
58 if (@$_GET['desc_perfil']) {
59 $PERFIL->setDescripcion(@$_GET['desc_perfil']);
62 $PERFIL->setDescripcion(@$_POST['desc_ant']);
65 $descripcion = $PERFIL->getDescripcion();
67 //OBTENGO LOS PERMISOS DEL SISTEMA {{{
68 $ASOCIACIONES = $SISTEMA->getAsociaciones();
70 foreach ($ASOCIACIONES as $as) {
71 $clave = $as['id'].'##'.$as['obs'];
72 $texto = ($as['obs'] != '') ? $as['desc'].' - '.$as['obs']: $as['desc'];
73 $PERMISOS[$clave] = $texto;
76 //AGREGO LOS ELEMENTOS DEL FORM {{{
78 $FORM->addElement ('header', 'cabecera', 'ABM Perfiles');
79 $FORM->addElement ('hidden', 'id_perfil', $id_perfil);
80 $FORM->addElement ('hidden', 'desc_ant' , $descripcion);
81 $FORM->addElement ('static', 'desc_perfil', 'Descripcion', $descripcion);
82 $FORM->addElement ('select', 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'true'));
83 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
84 $FORM->addElement ('select', 'tipo_perfil', 'Tipo Perfil', array('E' => 'Externo', 'I' => 'Interno', 'D' => 'Dios'), array ('size' => '1'));
86 $FORM->addElement ('hidden', 'responsable', $responsable);
87 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
88 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location=\'perfiles\';return false;'));
89 $FORM->addGroup($group,'botones');
92 $ERROR = new MECON_HTML_Error('El sistema no posee permisos asociados.');
95 //AGREGO LAS REGLAS DE VALIDACION {{{
96 $FORM->addRule ('permisos', 'Se debe seleccionar al menos un permiso', 'required');
98 //CARGO LOS DATOS SI YA EXISTEN EN BASE {{{
99 if (isset($_GET['accion']) && $_GET['accion'] != '') {
101 $id_perfil =& $FORM->getElement ('id_perfil' );
102 $desc_perfil =& $FORM->getElement ('desc_perfil');
103 $permisos =& $FORM->getElement ('permisos' );
105 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
106 $tipo_perfil =& $FORM->getElement ('tipo_perfil');
108 $responsable =& $FORM->getElement ('responsable');
109 $group =& $FORM->getElement ('botones' );
110 $group =& $group->getElements('aceptar' );
111 $aceptar =& $group[0];
113 $permisos->setSelected($PERFIL->getPermisos());
115 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
116 $tipo_perfil->setSelected($PERFIL->getTipo());
119 if ($PERFIL->getResponsable() != '') {
120 $responsable->setValue($PERFIL->getResponsable());
123 //Modifico el valor del boton
124 $aceptar->setValue('Modificar');
126 //ELIMINACION -> modifico el valor del boton
127 if ($_GET['accion'] == 'e') {
128 $aceptar->setValue('Eliminar');
129 $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
134 //VALIDO EL FORMULARIO {{{
135 if ($FORM->validate()) {
136 // VEO SI SE CANCELO {{{
137 $botones = $FORM->getSubmitValue('botones');
138 if (@$botones['cancelar']) {
139 header('Location: perfiles');
143 $id_perfil =& $FORM->getElement ('id_perfil' );
144 $desc_perfil =& $FORM->getElement ('desc_perfil');
145 $permisos =& $FORM->getElement ('permisos' );
147 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
148 $tipo_perfil =& $FORM->getElement ('tipo_perfil');
149 $tipo_perfil_tmp = $tipo_perfil->getSelected();
151 $responsable =& $FORM->getElement ('responsable');
152 $group =& $FORM->getElement ('botones' );
153 $group =& $group->getElements('aceptar' );
154 $aceptar =& $group[0];
156 $PERFIL->setDescripcion($desc_perfil->_text );
157 $PERFIL->setResponsable($responsable->getValue());
158 $PERFIL->setPermisos ($permisos->getSelected()); //Le asigno al perfil los permisos seleccionados
160 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
161 $PERFIL->setTipo ($tipo_perfil_tmp['0'] );
164 //Grabo y verifico si se produjo algun error
165 $res = $PERFIL->guardarDatos($aceptar->getValue());
167 if (PEAR::isError($res)) {
168 $ERROR = new MECON_HTML_Error($res->getMessage());
169 if ($aceptar->getValue() == 'Eliminar') {
175 header('Location: perfiles');
180 //DIBUJO LA PAGINA {{{
181 $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
182 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
183 $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
184 $TABLA3->addRow($row,'align=left');
186 $MARCO->addTitle('ABM Perfil');
187 $MARCO->addBody($TABLA3);
189 $MARCO->addBody($ERROR);
191 $MARCO->addBody($FORM);