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';
27 require_once 'MECON/HTML/Tabla.php';
29 //CREO LOS OBJETO NECESARIOS {{{
30 $SAMURAI = new Samurai($DB);
31 $FORM = new MECON_HTML_QuickForm ('sistemas_abm','post','sistemas-abm');
33 //OBTENGO LA LISTA DE PERMISOS {{{
34 $PERMISOS = $SAMURAI->getSelectPermisos();
36 //AGREGO LOS ELEMENTOS DEL FORM {{{
37 $FORM->addElement ('header' , 'cabecera' , 'ABM Sistemas');
38 $FORM->addElement ('hidden' , 'id_sistema');
39 $FORM->addElement ('text' , 'nombre_sistema' , 'Nombre' , array('size' => '30'));
40 $FORM->addElement ('textarea', 'desc_sistema' , 'Descripcion' , array('rows' => '2','cols'=>'50'));
41 $FORM->addElement ('mdate' , 'fecha_inicio' , 'Fecha Inicio' );
42 $FORM->addElement ('mdate' , 'fecha_fin' , 'Fecha Fin' );
43 $FORM->addElement ('mdate' , 'fecha_implementacion', 'Fecha Implementacion');
44 $FORM->addElement ('textarea', 'contacto' , 'Contacto' , array('rows' => '2','cols'=>'50'));
45 $FORM->addElement ('select' , 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'multiple'));
46 $FORM->addElement ('static' , 'responsable' , 'Responsable' , $_SESSION['samurai']['login']);
47 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
48 $FORM->addGroup($group,'botones');
50 //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
51 $FORM->addRule('nombre_sistema' , 'El campo nombre es obligatorio' , 'required');
52 $FORM->addRule('desc_sistema' , 'El campo descripcion es obligatorio' , 'required');
53 $FORM->addRule('fecha_inicio' , 'El campo fecha inicio es obligatorio', 'required');
54 $FORM->addRule('fecha_inicio' , 'La fecha no es válida' , 'fecha' );
55 $FORM->addRule('fecha_fin' , 'La fecha no es válida' , 'fecha' );
56 $FORM->addRule('fecha_implementacion', 'La fecha no es válida' , 'fecha' );
57 $FORM->addRule('contacto' , 'El campo contacto es obligatorio' , 'required');
59 //CREO EL OBJETO SISTEMA {{{
60 //Obtengo el id del sistema.
61 $idSistema =& $FORM->getElement('id_sistema');
63 if (isset($_GET['accion']) && $_GET['accion'] != '') {
64 //Viene en el get es -> modificar o eliminar, me ocupo yo.
65 $id_sistema = $_GET['idSistema'];
66 $idSistema->setValue($id_sistema);
69 //Viene en el post, no me ocupo yo.
70 $id_sistema = $idSistema->getValue();
73 $SISTEMA = new Sistema ($DB, $id_sistema);
75 //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
76 if (isset($_GET['accion']) && $_GET['accion'] != '') {
77 //MODIFICACION -> agrego la info a los elementos
78 $nombre_sistema =& $FORM->getElement ('nombre_sistema' );
79 $desc_sistema =& $FORM->getElement ('desc_sistema' );
80 $fecha_inicio =& $FORM->getElement ('fecha_inicio' );
81 $fecha_fin =& $FORM->getElement ('fecha_fin' );
82 $fecha_implementacion =& $FORM->getElement ('fecha_implementacion');
83 $contacto =& $FORM->getElement ('contacto' );
84 $permisos =& $FORM->getElement ('permisos' );
85 $responsable =& $FORM->getElement ('responsable' );
86 $group =& $FORM->getElement ('botones' );
87 $group =& $group->getElements('aceptar' );
88 $aceptar =& $group[0];
90 $nombre_sistema->setValue($SISTEMA->getNombre());
91 $desc_sistema->setValue ($SISTEMA->getDescripcion());
92 $contacto->setValue ($SISTEMA->getContacto());
94 if ($SISTEMA->getIdPermisos() != '') {
95 $permisos->setSelected($SISTEMA->getIdPermisos());
97 if ($SISTEMA->getResponsable() != '') {
98 $responsable->setValue($SISTEMA->getResponsable());
101 if ($tmp = $SISTEMA->getFechaInicio()) {
102 $fecha_inicio->setSelectedDate(array( 'd' => $tmp->format("%d"),
103 'F' => $tmp->format("%m"),
104 'Y' => $tmp->format("%Y"),
107 if ($tmp = $SISTEMA->getFechaFin()) {
108 $fecha_fin->setSelectedDate(array( 'd' => $tmp->format("%d"),
109 'F' => $tmp->format("%m"),
110 'Y' => $tmp->format("%Y"),
113 if ($tmp = $SISTEMA->getFechaImplementacion()) {
114 $fecha_implementacion->setSelectedDate(array( 'd' => $tmp->format("%d"),
115 'F' => $tmp->format("%m"),
116 'Y' => $tmp->format("%Y"),
120 $aceptar->setValue('Modificar');
122 //ELIMINACION -> modifico el valor del boton
123 if ($_GET['accion'] == 'e') {
124 $aceptar->setValue('Eliminar');
129 //VALIDO EL FORMULARIO {{{
130 if ($FORM->validate()) {
131 $nombre_sistema =& $FORM->getElement ('nombre_sistema' );
132 $desc_sistema =& $FORM->getElement ('desc_sistema' );
133 $fecha_inicio =& $FORM->getElement ('fecha_inicio' );
134 $fecha_fin =& $FORM->getElement ('fecha_fin' );
135 $fecha_implementacion =& $FORM->getElement ('fecha_implementacion');
136 $contacto =& $FORM->getElement ('contacto' );
137 $permisos =& $FORM->getElement ('permisos' );
138 $responsable =& $FORM->getElement ('responsable' );
139 $group =& $FORM->getElement ('botones' );
140 $group =& $group->getElements('aceptar' );
141 $aceptar =& $group[0];
143 $SISTEMA->setNombre ($nombre_sistema->getValue());
144 $SISTEMA->setDescripcion($desc_sistema->getValue());
146 $f1 =& $fecha_inicio->getValue();
147 $f2 =& $fecha_fin->getValue();
148 $f3 =& $fecha_implementacion->getValue();
152 $SISTEMA->setFechaInicio($f1->format("%Y-%m-%d"));
155 $SISTEMA->setFechaInicio();
158 $SISTEMA->setFechaFin($f2->format("%Y-%m-%d"));
161 $SISTEMA->setFechaFin();
164 $SISTEMA->setFechaImplementacion($f3->format("%Y-%m-%d"));
167 $SISTEMA->setFechaImplementacion();
169 $SISTEMA->setContacto($contacto->getValue());
170 $SISTEMA->setPermisos($permisos->getSelected());
171 $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)) {
175 $TABLA = new Tabla ('cellspacing=0');
176 $row = array ('<font color="red"><b>'.$res->getMessage().'</b></font>');
177 $TABLA->addRow($row,'align=left');
181 header('Location: sistemas');
186 //DIBUJO LA PAGINA {{{
187 $MARCO = new Marco ('../../conf/confSecciones.php');
188 $MARCO->addTitle('ABM Sistema');
190 $MARCO->addBody($TABLA->toHtml(1));
192 $MARCO->addBody($FORM);