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 // +----------------------------------------------------------------------+
26 require_once 'MECON/HTML/QuickForm.php';
28 //CREO LOS OBJETO NECESARIOS {{{
29 $SAMURAI = new Samurai($DB);
30 $FORM = new MECON_HTML_QuickForm ('sistemas_abm','post','sistemas-abm');
32 //OBTENGO LA LISTA DE PERMISOS {{{
33 $PERMISOS = $SAMURAI->getSelectPermisos();
35 //AGREGO LOS ELEMENTOS DEL FORM {{{
36 $FORM->addElement ('header' , 'cabecera' , 'ABM Sistemas');
37 $FORM->addElement ('hidden' , 'id_sistema');
38 $FORM->addElement ('text' , 'nombre_sistema' , 'Nombre' , array('size' => '30'));
39 $FORM->addElement ('textarea', 'desc_sistema' , 'Descripcion' , array('rows' => '2','cols'=>'50'));
40 $FORM->addElement ('mdate' , 'fecha_inicio' , 'Fecha Inicio' );
41 $FORM->addElement ('mdate' , 'fecha_fin' , 'Fecha Fin' );
42 $FORM->addElement ('mdate' , 'fecha_implementacion', 'Fecha Implementacion');
43 $FORM->addElement ('textarea', 'contacto' , 'Contacto' , array('rows' => '2','cols'=>'50'));
44 $FORM->addElement ('select' , 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'multiple'));
45 $FORM->addElement ('static' , 'responsable' , 'Responsable' , $_SESSION['samurai']['login']);
46 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
47 $FORM->addGroup($group,'botones');
49 //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
50 $FORM->addRule('nombre_sistema' , 'El campo nombre es obligatorio' , 'required');
51 $FORM->addRule('desc_sistema' , 'El campo descripcion es obligatorio' , 'required');
52 $FORM->addRule('fecha_inicio' , 'El campo fecha inicio es obligatorio', 'required');
53 $FORM->addRule('fecha_inicio' , 'La fecha no es válida' , 'fecha' );
54 $FORM->addRule('fecha_fin' , 'La fecha no es válida' , 'fecha' );
55 $FORM->addRule('fecha_implementacion', 'La fecha no es válida' , 'fecha' );
56 $FORM->addRule('contacto' , 'El campo contacto es obligatorio' , 'required');
58 //CREO EL OBJETO SISTEMA {{{
59 //Obtengo el id del sistema.
60 $idSistema =& $FORM->getElement('id_sistema');
62 if (isset($_GET['accion']) && $_GET['accion'] != '') {
63 //Viene en el get es -> modificar o eliminar, me ocupo yo.
64 $id_sistema = $_GET['idSistema'];
65 $idSistema->setValue($id_sistema);
68 //Viene en el post, no me ocupo yo.
69 $id_sistema = $idSistema->getValue();
72 $SISTEMA = new Sistema ($DB, $id_sistema);
74 //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
75 if (isset($_GET['accion']) && $_GET['accion'] != '') {
76 //MODIFICACION -> agrego la info a los elementos
77 $nombre_sistema =& $FORM->getElement ('nombre_sistema' );
78 $desc_sistema =& $FORM->getElement ('desc_sistema' );
79 $fecha_inicio =& $FORM->getElement ('fecha_inicio' );
80 $fecha_fin =& $FORM->getElement ('fecha_fin' );
81 $fecha_implementacion =& $FORM->getElement ('fecha_implementacion');
82 $contacto =& $FORM->getElement ('contacto' );
83 $permisos =& $FORM->getElement ('permisos' );
84 $responsable =& $FORM->getElement ('responsable' );
85 $group =& $FORM->getElement ('botones' );
86 $group =& $group->getElements('aceptar' );
87 $aceptar =& $group[0];
89 $nombre_sistema->setValue($SISTEMA->getNombre());
90 $desc_sistema->setValue ($SISTEMA->getDescripcion());
91 $contacto->setValue ($SISTEMA->getContacto());
93 if ($SISTEMA->getIdPermisos() != '') {
94 $permisos->setSelected($SISTEMA->getIdPermisos());
96 if ($SISTEMA->getResponsable() != '') {
97 $responsable->setValue($SISTEMA->getResponsable());
100 if ($tmp = $SISTEMA->getFechaInicio()) {
101 $fecha_inicio->setSelectedDate(array( 'd' => $tmp->format("%d"),
102 'F' => $tmp->format("%m"),
103 'Y' => $tmp->format("%Y"),
106 if ($tmp = $SISTEMA->getFechaFin()) {
107 $fecha_fin->setSelectedDate(array( 'd' => $tmp->format("%d"),
108 'F' => $tmp->format("%m"),
109 'Y' => $tmp->format("%Y"),
112 if ($tmp = $SISTEMA->getFechaImplementacion()) {
113 $fecha_implementacion->setSelectedDate(array( 'd' => $tmp->format("%d"),
114 'F' => $tmp->format("%m"),
115 'Y' => $tmp->format("%Y"),
119 $aceptar->setValue('Modificar');
121 //ELIMINACION -> modifico el valor del boton
122 if ($_GET['accion'] == 'e') {
123 $aceptar->setValue('Eliminar');
128 //VALIDO EL FORMULARIO {{{
129 if ($FORM->validate()) {
130 $nombre_sistema =& $FORM->getElement ('nombre_sistema' );
131 $desc_sistema =& $FORM->getElement ('desc_sistema' );
132 $fecha_inicio =& $FORM->getElement ('fecha_inicio' );
133 $fecha_fin =& $FORM->getElement ('fecha_fin' );
134 $fecha_implementacion =& $FORM->getElement ('fecha_implementacion');
135 $contacto =& $FORM->getElement ('contacto' );
136 $permisos =& $FORM->getElement ('permisos' );
137 $responsable =& $FORM->getElement ('responsable' );
138 $group =& $FORM->getElement ('botones' );
139 $group =& $group->getElements('aceptar' );
140 $aceptar =& $group[0];
142 $SISTEMA->setNombre ($nombre_sistema->getValue());
143 $SISTEMA->setDescripcion($desc_sistema->getValue());
145 $f1 =& $fecha_inicio->getValue();
146 $f2 =& $fecha_fin->getValue();
147 $f3 =& $fecha_implementacion->getValue();
151 $SISTEMA->setFechaInicio($f1->format("%Y-%m-%d"));
154 $SISTEMA->setFechaInicio();
157 $SISTEMA->setFechaFin($f2->format("%Y-%m-%d"));
160 $SISTEMA->setFechaFin();
163 $SISTEMA->setFechaImplementacion($f3->format("%Y-%m-%d"));
166 $SISTEMA->setFechaImplementacion();
168 $SISTEMA->setContacto($contacto->getValue());
169 $SISTEMA->setPermisos($permisos->getSelected());
170 $SISTEMA->setResponsable($responsable->_text); //TODO URGENTE Modificar esto. No tiene hay metodo static::getValue()
172 $res = $SISTEMA->guardarDatos($aceptar->getValue());
174 if (PEAR::isError($res)) {
176 $group[] = HTML_QuickForm::createElement('static', 'error' , 'Error:', $res->getMessage());
177 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , $aceptar->getValue());
178 $FORM->removeElement('botones');
179 $FORM->addGroup($group,'botones', '', '<br>');
183 header('Location: sistemas');
188 //DIBUJO LA PAGINA {{{
189 $MARCO = new Marco ('../../conf/confSecciones.php');
190 $MARCO->addTitle('ABM Sistema');
191 $MARCO->addBody($FORM);