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: jue may 29 13:41:29 ART 2003
17 // | Author: Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
25 require_once 'MECON/HTML/QuickForm.php';
26 require_once 'MECON/HTML/Error.php';
27 require_once 'MECON/HTML/Tabla.php';
30 require_once 'SAMURAI/Sistema.php';
31 require_once 'SAMURAI/Permiso.php';
34 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
35 $SAMURAI_PERM->chequear(SAMURAI_DEVELOPER);
37 //CREO LOS OBJETO NECESARIOS {{{
38 $FORM = new MECON_HTML_QuickForm ('sistemas_abm','post','sistemas-abm');
40 //OBTENGO LA LISTA DE PERMISOS {{{
41 $PERMISOS = SAMURAI_Permiso::getArrayPermisos($DB);
43 //AGREGO LOS ELEMENTOS DEL FORM {{{
44 $FORM->addElement ('header' , 'cabecera' , 'ABM Sistemas');
45 $FORM->addElement ('hidden' , 'id_sistema');
46 $FORM->addElement ('text' , 'nombre_sistema' , 'Nombre' , array('size' => '30'));
47 $FORM->addElement ('textarea', 'desc_sistema' , 'Descripcion' , array('rows' => '2','cols'=>'50', 'wrap'=>'virtual'));
48 $FORM->addElement ('mdate' , 'fecha_inicio' , 'Fecha Inicio' );
49 $FORM->addElement ('mdate' , 'fecha_fin' , 'Fecha Fin' );
50 $FORM->addElement ('mdate' , 'fecha_implementacion', 'Fecha Implementacion');
51 $FORM->addElement ('textarea', 'contacto' , 'Contacto' , array('rows' => '2','cols'=>'50'));
52 $FORM->addElement ('select' , 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'multiple'));
53 $FORM->addElement ('hidden' , 'responsable' , $_SESSION['usuario']);
54 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
55 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location =\'sistemas\';return false;'));
56 $FORM->addGroup($group,'botones');
58 //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
59 $botones = $FORM->getSubmitValue('botones');
60 if (!@$botones['cancelar']) {
61 $FORM->addRule('nombre_sistema' , 'El campo nombre es obligatorio' , 'required');
62 $FORM->addRule('desc_sistema' , 'El campo descripcion es obligatorio' , 'required');
63 $FORM->addRule('fecha_inicio' , 'El campo fecha inicio es obligatorio', 'required');
64 // if (isset($_GET['accion']) && $_GET['accion'] != 'e') {
65 $FORM->addRule('fecha_inicio' , 'La fecha no es válida', 'fecha');
66 $FORM->addRule('fecha_fin' , 'La fecha no es válida', 'fecha');
67 $FORM->addRule('fecha_implementacion', 'La fecha no es válida', 'fecha');
69 $FORM->addRule('contacto', 'El campo contacto es obligatorio', 'required');
72 //CREO EL OBJETO SISTEMA {{{
73 //Obtengo el id del sistema.
74 $idSistema =& $FORM->getElement('id_sistema');
76 if (isset($_GET['accion']) && $_GET['accion'] != '') {
77 //Viene en el get es -> modificar o eliminar, me ocupo yo.
78 $id_sistema = $_GET['idSistema'];
79 $idSistema->setValue($id_sistema);
82 //Viene en el post, no me ocupo yo.
83 $id_sistema = $idSistema->getValue();
86 $SISTEMA = new SAMURAI_Sistema ($DB, $id_sistema);
88 //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
89 if (isset($_GET['accion']) && $_GET['accion'] != '') {
90 //MODIFICACION -> agrego la info a los elementos
91 $nombre_sistema =& $FORM->getElement ('nombre_sistema' );
92 $desc_sistema =& $FORM->getElement ('desc_sistema' );
93 $fecha_inicio =& $FORM->getElement ('fecha_inicio' );
94 $fecha_fin =& $FORM->getElement ('fecha_fin' );
95 $fecha_implementacion =& $FORM->getElement ('fecha_implementacion');
96 $contacto =& $FORM->getElement ('contacto' );
97 $permisos =& $FORM->getElement ('permisos' );
98 $responsable =& $FORM->getElement ('responsable' );
99 $group =& $FORM->getElement ('botones' );
100 $group =& $group->getElements('aceptar' );
101 $aceptar =& $group[0];
103 $nombre_sistema->setValue($SISTEMA->getNombre());
104 $desc_sistema->setValue ($SISTEMA->getDescripcion());
105 $contacto->setValue ($SISTEMA->getContacto());
107 if ($SISTEMA->getIdPermisos() != '') {
108 $permisos->setSelected($SISTEMA->getIdPermisos());
110 if ($SISTEMA->getResponsable() != '') {
111 $responsable->setValue($SISTEMA->getResponsable());
114 if ($tmp = $SISTEMA->getFechaInicio()) {
115 $fecha_inicio->setSelectedDate(array( 'd' => $tmp->format("%d"),
116 'F' => $tmp->format("%m"),
117 'Y' => $tmp->format("%Y"),
121 $fecha_inicio->setSelectedDate(array( 'd' => '',
128 if ($tmp = $SISTEMA->getFechaFin()) {
129 $fecha_fin->setSelectedDate(array( 'd' => $tmp->format("%d"),
130 'F' => $tmp->format("%m"),
131 'Y' => $tmp->format("%Y"),
135 $fecha_fin->setSelectedDate(array( 'd' => '',
141 if ($tmp = $SISTEMA->getFechaImplementacion()) {
142 $fecha_implementacion->setSelectedDate(array( 'd' => $tmp->format("%d"),
143 'F' => $tmp->format("%m"),
144 'Y' => $tmp->format("%Y"),
148 $fecha_implementacion->setSelectedDate(array( 'd' => '',
154 $aceptar->setValue('Modificar');
156 //ELIMINACION -> modifico el valor del boton
157 if ($_GET['accion'] == 'e') {
158 $aceptar->setValue('Eliminar');
159 $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
164 //VALIDO EL FORMULARIO {{{
165 if ($FORM->validate()) {
166 $nombre_sistema =& $FORM->getElement ('nombre_sistema' );
167 $desc_sistema =& $FORM->getElement ('desc_sistema' );
168 $fecha_inicio =& $FORM->getElement ('fecha_inicio' );
169 $fecha_fin =& $FORM->getElement ('fecha_fin' );
170 $fecha_implementacion =& $FORM->getElement ('fecha_implementacion');
171 $contacto =& $FORM->getElement ('contacto' );
172 $permisos =& $FORM->getElement ('permisos' );
173 $responsable =& $FORM->getElement ('responsable' );
174 $group =& $FORM->getElement ('botones' );
175 $group =& $group->getElements('aceptar' );
176 $aceptar =& $group[0];
178 $SISTEMA->setNombre ($nombre_sistema->getValue());
179 $SISTEMA->setDescripcion($desc_sistema->getValue());
181 $f1 =& $fecha_inicio->getValue();
182 $f2 =& $fecha_fin->getValue();
183 $f3 =& $fecha_implementacion->getValue();
187 $SISTEMA->setFechaInicio($f1->format("%Y-%m-%d"));
190 $SISTEMA->setFechaInicio();
193 $SISTEMA->setFechaFin($f2->format("%Y-%m-%d"));
196 $SISTEMA->setFechaFin();
199 $SISTEMA->setFechaImplementacion($f3->format("%Y-%m-%d"));
202 $SISTEMA->setFechaImplementacion();
204 $SISTEMA->setContacto($contacto->getValue());
205 $SISTEMA->setPermisos($permisos->getSelected());
206 $SISTEMA->setResponsable($responsable->getValue());
207 $botones = $FORM->getSubmitValue('botones');
208 if (@$botones['cancelar']) {
209 header ('Location: sistemas');
212 $res = $SISTEMA->guardarDatos($aceptar->getValue());
213 if ($aceptar->getValue() != 'Eliminar') {
214 $_SESSION['samurai']['id_sistema'] = $SISTEMA->getId();
216 if (PEAR::isError($res)) {
217 $ERROR = new MECON_HTML_Error(traducir($res->getMessage()));
221 header('Location: sistemas');
227 //DIBUJO LA PAGINA {{{
228 $MARCO->addTitle('ABM Sistema');
230 $MARCO->addBody($ERROR);
232 $MARCO->addBody($FORM);