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->setSistema(SAMURAI_PERM);
36 if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) {
37 $SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER);
39 $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
41 //CREO LOS OBJETO NECESARIOS {{{
42 $FORM = new MECON_HTML_QuickForm ('sistemas_abm','post','sistemas-abm');
44 //OBTENGO LA LISTA DE PERMISOS {{{
45 $PERMISOS = SAMURAI_Permiso::getArrayPermisos($DB);
47 //AGREGO LOS ELEMENTOS DEL FORM {{{
48 $FORM->addElement ('header' , 'cabecera' , 'ABM Sistemas');
49 $FORM->addElement ('hidden' , 'id_sistema');
50 $FORM->addElement ('text' , 'nombre_sistema' , 'Nombre' , array('size' => '30'));
51 $FORM->addElement ('textarea', 'desc_sistema' ,
52 'Descripción' , array('rows' => '2','cols'=>'50', 'wrap'=>'virtual'));
53 $FORM->addElement ('mdate' , 'fecha_inicio' , 'Fecha Inicio' );
54 $FORM->addElement ('mdate' , 'fecha_fin' , 'Fecha Fin' );
55 $FORM->addElement ('mdate' , 'fecha_implementacion', 'Fecha Implementación');
56 $FORM->addElement ('textarea', 'contacto' , 'Contacto' , array('rows' => '2','cols'=>'50'));
57 $FORM->addElement ('select' , 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'multiple'));
58 $FORM->addElement ('hidden' , 'responsable' , $_SESSION['usuario']);
59 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
60 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location =\'sistemas\';return false;'));
61 $FORM->addGroup($group,'botones');
63 //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
64 $botones = $FORM->getSubmitValue('botones');
65 if (!@$botones['cancelar']) {
66 $FORM->addRule('nombre_sistema' , 'El campo nombre es obligatorio' , 'required');
67 $FORM->addRule('desc_sistema' , 'El campo descripción es obligatorio' , 'required');
68 $FORM->addRule('fecha_inicio' , 'El campo fecha inicio es obligatorio', 'required');
69 // if (isset($_GET['accion']) && $_GET['accion'] != 'e') {
70 $FORM->addRule('fecha_inicio' , 'La fecha no es válida', 'fecha');
71 $FORM->addRule('fecha_fin' , 'La fecha no es válida', 'fecha');
72 $FORM->addRule('fecha_implementacion', 'La fecha no es válida', 'fecha');
74 $FORM->addRule('contacto', 'El campo contacto es obligatorio', 'required');
77 //CREO EL OBJETO SISTEMA {{{
78 //Obtengo el id del sistema.
79 $idSistema =& $FORM->getElement('id_sistema');
81 if (isset($_GET['accion']) && $_GET['accion'] != '') {
82 //Viene en el get es -> modificar o eliminar, me ocupo yo.
83 $id_sistema = $_GET['idSistema'];
84 $idSistema->setValue($id_sistema);
87 //Viene en el post, no me ocupo yo.
88 $id_sistema = $idSistema->getValue();
91 $SISTEMA = new SAMURAI_Sistema ($DB, $id_sistema);
93 //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
94 if (isset($_GET['accion']) && $_GET['accion'] != '') {
95 //MODIFICACION -> agrego la info a los elementos
96 $nombre_sistema =& $FORM->getElement ('nombre_sistema' );
97 $desc_sistema =& $FORM->getElement ('desc_sistema' );
98 $fecha_inicio =& $FORM->getElement ('fecha_inicio' );
99 $fecha_fin =& $FORM->getElement ('fecha_fin' );
100 $fecha_implementacion =& $FORM->getElement ('fecha_implementacion');
101 $contacto =& $FORM->getElement ('contacto' );
102 $permisos =& $FORM->getElement ('permisos' );
103 $responsable =& $FORM->getElement ('responsable' );
104 $group =& $FORM->getElement ('botones' );
105 $group =& $group->getElements('aceptar' );
106 $aceptar =& $group[0];
108 $nombre_sistema->setValue($SISTEMA->getNombre());
109 $desc_sistema->setValue ($SISTEMA->getDescripcion());
110 $contacto->setValue ($SISTEMA->getContacto());
112 if ($SISTEMA->getIdPermisos() != '') {
113 $permisos->setSelected($SISTEMA->getIdPermisos());
115 if ($SISTEMA->getResponsable() != '') {
116 $responsable->setValue($SISTEMA->getResponsable());
119 if ($tmp = $SISTEMA->getFechaInicio()) {
120 $fecha_inicio->setSelectedDate(array( 'd' => $tmp->format("%d"),
121 'F' => $tmp->format("%m"),
122 'Y' => $tmp->format("%Y"),
126 $fecha_inicio->setSelectedDate(array( 'd' => '',
133 if ($tmp = $SISTEMA->getFechaFin()) {
134 $fecha_fin->setSelectedDate(array( 'd' => $tmp->format("%d"),
135 'F' => $tmp->format("%m"),
136 'Y' => $tmp->format("%Y"),
140 $fecha_fin->setSelectedDate(array( 'd' => '',
146 if ($tmp = $SISTEMA->getFechaImplementacion()) {
147 $fecha_implementacion->setSelectedDate(array( 'd' => $tmp->format("%d"),
148 'F' => $tmp->format("%m"),
149 'Y' => $tmp->format("%Y"),
153 $fecha_implementacion->setSelectedDate(array( 'd' => '',
159 $aceptar->setValue('Modificar');
161 //ELIMINACION -> modifico el valor del boton
162 if ($_GET['accion'] == 'e') {
163 $aceptar->setValue('Eliminar');
164 $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
169 //VALIDO EL FORMULARIO {{{
170 if ($FORM->validate()) {
171 $nombre_sistema =& $FORM->getElement ('nombre_sistema' );
172 $desc_sistema =& $FORM->getElement ('desc_sistema' );
173 $fecha_inicio =& $FORM->getElement ('fecha_inicio' );
174 $fecha_fin =& $FORM->getElement ('fecha_fin' );
175 $fecha_implementacion =& $FORM->getElement ('fecha_implementacion');
176 $contacto =& $FORM->getElement ('contacto' );
177 $permisos =& $FORM->getElement ('permisos' );
178 $responsable =& $FORM->getElement ('responsable' );
179 $group =& $FORM->getElement ('botones' );
180 $group =& $group->getElements('aceptar' );
181 $aceptar =& $group[0];
183 $SISTEMA->setNombre ($nombre_sistema->getValue());
184 $SISTEMA->setDescripcion($desc_sistema->getValue());
186 $f1 =& $fecha_inicio->getValue();
187 $f2 =& $fecha_fin->getValue();
188 $f3 =& $fecha_implementacion->getValue();
192 $SISTEMA->setFechaInicio($f1->format("%Y-%m-%d"));
195 $SISTEMA->setFechaInicio();
198 $SISTEMA->setFechaFin($f2->format("%Y-%m-%d"));
201 $SISTEMA->setFechaFin();
204 $SISTEMA->setFechaImplementacion($f3->format("%Y-%m-%d"));
207 $SISTEMA->setFechaImplementacion();
209 $SISTEMA->setContacto($contacto->getValue());
210 $SISTEMA->setPermisos($permisos->getSelected());
211 $SISTEMA->setResponsable($responsable->getValue());
212 $botones = $FORM->getSubmitValue('botones');
213 if (@$botones['cancelar']) {
214 header ('Location: sistemas');
217 $res = $SISTEMA->guardarDatos($aceptar->getValue());
218 if ($aceptar->getValue() != 'Eliminar') {
219 $_SESSION['samurai']['id_sistema'] = $SISTEMA->getId();
221 if (PEAR::isError($res)) {
222 $ERROR = new MECON_HTML_Error(traducir($res->getMessage()));
226 header('Location: sistemas');
232 //DIBUJO LA PAGINA {{{
233 $MARCO->addTitle('ABM Sistema');
235 $MARCO->addBody($ERROR);
237 $MARCO->addBody($FORM);