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'));
54 //xdebug_start_trace();
56 $FORM->addElement ('mdate' , 'fecha_inicio' , 'Fecha Inicio' );
58 //xdebug_dump_function_trace();
61 $FORM->addElement ('mdate' , 'fecha_fin' , 'Fecha Fin' );
62 $FORM->addElement ('mdate' , 'fecha_implementacion', 'Fecha Implementación');
63 $FORM->addElement ('textarea', 'contacto' , 'Contacto' , array('rows' => '2','cols'=>'50'));
64 $FORM->addElement ('select' , 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'multiple'));
65 $FORM->addElement ('hidden' , 'responsable' , $_SESSION['usuario']);
66 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
67 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location =\'sistemas\';return false;'));
68 $FORM->addGroup($group,'botones');
70 //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
71 $botones = $FORM->getSubmitValue('botones');
72 if (!@$botones['cancelar']) {
73 $FORM->addRule('nombre_sistema' , 'El campo nombre es obligatorio' , 'required');
74 $FORM->addRule('desc_sistema' , 'El campo descripción es obligatorio' , 'required');
75 $FORM->addRule('fecha_inicio' , 'El campo fecha inicio es obligatorio', 'required');
76 // if (isset($_GET['accion']) && $_GET['accion'] != 'e') {
77 $FORM->addRule('fecha_inicio' , 'La fecha no es válida', 'fecha');
78 $FORM->addRule('fecha_fin' , 'La fecha no es válida', 'fecha');
79 $FORM->addRule('fecha_implementacion', 'La fecha no es válida', 'fecha');
81 $FORM->addRule('contacto', 'El campo contacto es obligatorio', 'required');
84 //CREO EL OBJETO SISTEMA {{{
85 //Obtengo el id del sistema.
86 $idSistema =& $FORM->getElement('id_sistema');
88 if (isset($_GET['accion']) && $_GET['accion'] != '') {
89 //Viene en el get es -> modificar o eliminar, me ocupo yo.
90 $id_sistema = $_GET['idSistema'];
91 $idSistema->setValue($id_sistema);
94 //Viene en el post, no me ocupo yo.
95 $id_sistema = $idSistema->getValue();
98 $SISTEMA = new SAMURAI_Sistema ($DB, $id_sistema);
100 //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
101 if (isset($_GET['accion']) && $_GET['accion'] != '') {
102 //MODIFICACION -> agrego la info a los elementos
103 $nombre_sistema =& $FORM->getElement ('nombre_sistema' );
104 $desc_sistema =& $FORM->getElement ('desc_sistema' );
105 $fecha_inicio =& $FORM->getElement ('fecha_inicio' );
106 $fecha_fin =& $FORM->getElement ('fecha_fin' );
107 $fecha_implementacion =& $FORM->getElement ('fecha_implementacion');
108 $contacto =& $FORM->getElement ('contacto' );
109 $permisos =& $FORM->getElement ('permisos' );
110 $responsable =& $FORM->getElement ('responsable' );
111 $group =& $FORM->getElement ('botones' );
112 $group =& $group->getElements('aceptar' );
113 $aceptar =& $group[0];
115 $nombre_sistema->setValue($SISTEMA->getNombre());
116 $desc_sistema->setValue ($SISTEMA->getDescripcion());
117 $contacto->setValue ($SISTEMA->getContacto());
119 if ($SISTEMA->getIdPermisos() != '') {
120 $permisos->setSelected($SISTEMA->getIdPermisos());
122 if ($SISTEMA->getResponsable() != '') {
123 $responsable->setValue($SISTEMA->getResponsable());
126 if ($tmp = $SISTEMA->getFechaInicio()) {
127 $fecha_inicio->setValue(array( 'd' => $tmp->format("%d"),
128 'F' => $tmp->format("%m"),
129 'Y' => $tmp->format("%Y"),
133 $fecha_inicio->setValue(array( 'd' => '',
140 if ($tmp = $SISTEMA->getFechaFin()) {
141 $fecha_fin->setValue(array( 'd' => $tmp->format("%d"),
142 'F' => $tmp->format("%m"),
143 'Y' => $tmp->format("%Y"),
147 $fecha_fin->setValue(array( 'd' => '',
153 if ($tmp = $SISTEMA->getFechaImplementacion()) {
154 $fecha_implementacion->setValue(array( 'd' => $tmp->format("%d"),
155 'F' => $tmp->format("%m"),
156 'Y' => $tmp->format("%Y"),
160 $fecha_implementacion->setValue(array( 'd' => '',
166 $aceptar->setValue('Modificar');
168 //ELIMINACION -> modifico el valor del boton
169 if ($_GET['accion'] == 'e') {
170 $aceptar->setValue('Eliminar');
171 $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
176 //VALIDO EL FORMULARIO {{{
177 if ($FORM->validate()) {
178 $nombre_sistema =& $FORM->getElement ('nombre_sistema' );
179 $desc_sistema =& $FORM->getElement ('desc_sistema' );
180 $fecha_inicio =& $FORM->getElement ('fecha_inicio' );
181 $fecha_fin =& $FORM->getElement ('fecha_fin' );
182 $fecha_implementacion =& $FORM->getElement ('fecha_implementacion');
183 $contacto =& $FORM->getElement ('contacto' );
184 $permisos =& $FORM->getElement ('permisos' );
185 $responsable =& $FORM->getElement ('responsable' );
186 $group =& $FORM->getElement ('botones' );
187 $group =& $group->getElements('aceptar' );
188 $aceptar =& $group[0];
190 $SISTEMA->setNombre ($nombre_sistema->getValue());
191 $SISTEMA->setDescripcion($desc_sistema->getValue());
193 $f1 =& $fecha_inicio->getValue();
194 $f2 =& $fecha_fin->getValue();
195 $f3 =& $fecha_implementacion->getValue();
199 $SISTEMA->setFechaInicio($f1->format("%Y-%m-%d"));
202 $SISTEMA->setFechaInicio();
205 $SISTEMA->setFechaFin($f2->format("%Y-%m-%d"));
208 $SISTEMA->setFechaFin();
211 $SISTEMA->setFechaImplementacion($f3->format("%Y-%m-%d"));
214 $SISTEMA->setFechaImplementacion();
216 $SISTEMA->setContacto($contacto->getValue());
217 $SISTEMA->setPermisos($permisos->getSelected());
218 $SISTEMA->setResponsable($responsable->getValue());
219 $botones = $FORM->getSubmitValue('botones');
220 if (@$botones['cancelar']) {
221 header ('Location: sistemas');
224 $res = $SISTEMA->guardarDatos($aceptar->getValue());
225 if ($aceptar->getValue() != 'Eliminar') {
226 $_SESSION['samurai']['id_sistema'] = $SISTEMA->getId();
228 if (PEAR::isError($res)) {
229 $ERROR = new MECON_HTML_Error(traducir($res->getMessage()));
233 header('Location: sistemas');
239 //DIBUJO LA PAGINA {{{
240 $MARCO->addTitle('ABM Sistema');
242 $MARCO->addBody($ERROR);
244 $MARCO->addBody($FORM);