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 $FORM->addElement ('hidden', 'responsable', $responsable);
84 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
85 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location=\'perfiles\';return false;'));
86 $FORM->addGroup($group,'botones');
89 $ERROR = new MECON_HTML_Error('El sistema no posee permisos asociados.');
92 //AGREGO LAS REGLAS DE VALIDACION {{{
93 $FORM->addRule ('permisos', 'Se debe seleccionar al menos un permiso', 'required');
95 //CARGO LOS DATOS SI YA EXISTEN EN BASE {{{
96 if (isset($_GET['accion']) && $_GET['accion'] != '') {
98 $id_perfil =& $FORM->getElement ('id_perfil' );
99 $desc_perfil =& $FORM->getElement ('desc_perfil');
100 $permisos =& $FORM->getElement ('permisos' );
101 $responsable =& $FORM->getElement ('responsable');
102 $group =& $FORM->getElement ('botones' );
103 $group =& $group->getElements('aceptar' );
104 $aceptar =& $group[0];
106 $permisos->setSelected($PERFIL->getPermisos());
108 if ($PERFIL->getResponsable() != '') {
109 $responsable->setValue($PERFIL->getResponsable());
112 //Modifico el valor del boton
113 $aceptar->setValue('Modificar');
115 //ELIMINACION -> modifico el valor del boton
116 if ($_GET['accion'] == 'e') {
117 $aceptar->setValue('Eliminar');
118 $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
123 //VALIDO EL FORMULARIO {{{
124 if ($FORM->validate()) {
125 // VEO SI SE CANCELO {{{
126 $botones = $FORM->getSubmitValue('botones');
127 if (@$botones['cancelar']) {
128 header('Location: perfiles');
132 $id_perfil =& $FORM->getElement ('id_perfil' );
133 $desc_perfil =& $FORM->getElement ('desc_perfil');
134 $permisos =& $FORM->getElement ('permisos' );
135 $responsable =& $FORM->getElement ('responsable');
136 $group =& $FORM->getElement ('botones' );
137 $group =& $group->getElements('aceptar' );
138 $aceptar =& $group[0];
140 $PERFIL->setDescripcion($desc_perfil->_text );
141 $PERFIL->setResponsable($responsable->getValue());
142 $PERFIL->setPermisos ($permisos->getSelected()); //Le asigno al perfil los permisos seleccionados
144 //Grabo y verifico si se produjo algun error
145 $res = $PERFIL->guardarDatos($aceptar->getValue());
147 if (PEAR::isError($res)) {
148 $ERROR = new MECON_HTML_Error($res->getMessage());
149 if ($aceptar->getValue() == 'Eliminar') {
155 header('Location: perfiles');
160 //DIBUJO LA PAGINA {{{
161 $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
162 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
163 $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
164 $TABLA3->addRow($row,'align=left');
166 $MARCO->addTitle('ABM Perfil');
167 $MARCO->addBody($TABLA3);
169 $MARCO->addBody($ERROR);
171 $MARCO->addBody($FORM);